/* ===== Variables ===== */
:root {
    --color-primary: #17ADC9;
    --color-primary-light: #4ECFDF;
    --color-primary-dark: #0E8FA3;
    --color-secondary: #5A7A9A;
    --color-text: #151C4B;
    --color-text-light: #5A6B8A;
    --color-background: #FFFFFF;
    --color-container: #DFE7E7;
    --color-border: #C5D1D1;
    --color-alpha: #B8B200;
    --color-bravo: #4000B8;
    --font-main: "LINE Seed JP", 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.18);
    --bg-gradient: linear-gradient(160deg, #0c1a2e 0%, #112840 40%, #0E8FA3 100%);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-text: rgba(255, 255, 255, 0.85);
    --glass-text-sub: rgba(255, 255, 255, 0.5);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--bg-gradient);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

/* ===== Screens ===== */
.screen {
    display: none;
    width: 100%;
    max-width: 480px;
    padding: 16px;
    min-height: 100dvh;
    position: relative;
}
.screen.active { display: flex; flex-direction: column; align-items: center; }

/* ===== Shared decorative blobs ===== */
.login-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}
.login-blob-1 {
    width: 260px; height: 260px;
    background: var(--color-primary);
    top: -80px; right: -60px;
    animation: blobFloat1 8s ease-in-out infinite;
}
.login-blob-2 {
    width: 200px; height: 200px;
    background: #7c4dff;
    bottom: -40px; left: -60px;
    animation: blobFloat2 10s ease-in-out infinite;
}
.login-blob-3 {
    width: 140px; height: 140px;
    background: #f9a825;
    top: 30%; left: -40px;
    opacity: 0.15;
    animation: blobFloat3 12s ease-in-out infinite;
}
@keyframes blobFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 30px); } }
@keyframes blobFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(25px, -20px); } }
@keyframes blobFloat3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(15px, 25px); } }

/* ===== Login Screen ===== */
.login-screen {
    justify-content: center;
    gap: 24px;
    text-align: center;
    padding: 24px 20px;
    max-width: 100%;
    overflow: hidden;
}

/* Login card (glass) */
.login-card {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px 32px;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.login-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 999px;
}
.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.login-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Feature list */
.login-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 16px 0 4px;
}
.login-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}
.login-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: rgba(23, 173, 201, 0.2);
    border-radius: 8px;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

/* Discord button */
.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #5865F2;
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 15px 28px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    margin-top: 4px;
}
.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: #6d78f5;
}
.btn-discord:active { transform: translateY(0); }
.btn-discord svg { width: 22px; height: 22px; }

.login-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.login-footer {
    position: relative;
    z-index: 1;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.login-footer-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.login-footer-link:hover { color: rgba(255, 255, 255, 0.6); }

.login-note-consent {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
}
.login-note-consent a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.login-note-consent a:hover { color: rgba(255, 255, 255, 0.7); }

/* ===== Loading ===== */
.loading-screen {
    justify-content: center;
    max-width: 100%;
}
.spinner {
    width: 40px; height: 40px;
    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: var(--color-primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { margin-top: 16px; color: var(--glass-text-sub); font-size: 0.875rem; }

/* ===== Error Screen ===== */
.error-screen {
    justify-content: center;
    text-align: center;
    gap: 16px;
    max-width: 100%;
}
.error-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    width: 100%;
}
.error-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.15);
    color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.error-screen h2 { color: #fff; font-size: 1.1rem; }
.error-message { color: var(--glass-text-sub); line-height: 1.6; font-size: 0.9rem; }
.btn-back {
    display: inline-block;
    margin-top: 4px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-back:hover { background: rgba(255, 255, 255, 0.18); }

/* ===== Card Screen ===== */
.card-screen {
    padding-top: 24px;
    padding-bottom: 40px;
    gap: 16px;
    max-width: 100%;
    overflow: hidden;
    min-height: auto;
}

/* ===== Glass Card (shared panel style) ===== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 20px;
    width: 100%;
    max-width: 420px;
}

/* ===== Check-in Card ===== */
.checkin-card {
    width: 100%;
    max-width: 420px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.checkin-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkin-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
}
.checkin-status.pending {
    background: rgba(230, 81, 0, 0.12);
    color: #ffab40;
    border: 1px solid rgba(255, 171, 64, 0.25);
}
.checkin-status.done {
    background: rgba(46, 125, 50, 0.12);
    color: #69f0ae;
    border: 1px solid rgba(105, 240, 174, 0.25);
}
.checkin-status-icon { font-size: 1.2rem; }
.checkin-form {
    display: flex;
    gap: 8px;
}
.checkin-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.checkin-form input::placeholder { color: var(--glass-text-sub); }
.checkin-form input:focus { border-color: var(--color-primary); }
.checkin-form button {
    padding: 10px 18px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s;
}
.checkin-form button:hover { transform: translateY(-1px); }
.checkin-form button:disabled { opacity: 0.5; pointer-events: none; }
.checkin-error {
    font-size: 0.8rem;
    color: #ff6b6b;
    margin-top: -6px;
}
.checkin-no-passcode {
    font-size: 0.8rem;
    color: var(--glass-text-sub);
    line-height: 1.5;
}

/* ===== Member check-in badge ===== */
.member-checkin-badge {
    position: absolute;
    bottom: -6px;
    right: 10px;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 2;
}
.member-checkin-badge.not-checked {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

/* ===== Reload hint ===== */
.reload-hint {
    width: 100%;
    max-width: 420px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--glass-text-sub);
    line-height: 1.5;
    padding: 0 4px;
}

/* ===== Team Card (the capturable area - stays white) ===== */
.team-card {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    background: var(--color-background);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    padding: 20px 20px 16px;
    text-align: center;
}
.card-header .team-name {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-all;
}
.card-header .circle-info {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 6px;
    line-height: 1.5;
}
.card-header .event-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* Card Body - Members */
.card-body {
    flex: 1;
    padding: 14px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.member-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f5f7f7;
    border: 2px solid #e8ecec;
    border-radius: var(--radius-lg);
    position: relative;
    transition: border-color 0.15s;
}
.member-row.is-me {
    border-color: var(--color-primary);
    background: #edf9fb;
}
.member-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e0e5e5;
    border: 2px solid #d0d8d8;
}
.member-row.is-me .member-avatar {
    border-color: var(--color-primary-light);
}
.member-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.member-name-line {
    display: flex;
    align-items: center;
    gap: 6px;
}
.member-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* XP badge */
.xp-badge {
    display: inline-block;
    background: #ebeef0;
    color: var(--color-text-light);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid #d0d8d8;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s, max-width 0.2s;
    max-width: 100px;
    overflow: hidden;
}
.xp-badge.xp-highest {
    background: #fff;
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
    font-weight: 800;
}
.xp-badge.xp-hidden {
    opacity: 0;
    max-width: 0;
    padding: 0;
    border: 0;
    margin: 0;
}

/* Leader badge */
.leader-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
    letter-spacing: 0.03em;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Weapons row */
.member-weapons {
    display: flex;
    gap: 4px;
    align-items: center;
}
.member-weapons img {
    width: 22px; height: 22px;
    object-fit: contain;
}

/* Card Footer */
.card-footer {
    padding: 8px 16px 14px;
    text-align: center;
    font-size: 0.6rem;
    color: var(--color-text-light);
    opacity: 0.6;
}

/* ===== Actions (below card) ===== */
.card-actions {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* XP Toggle */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}
.toggle-row label { font-size: 0.85rem; color: var(--glass-text-sub); }
.toggle-switch {
    position: relative;
    width: 44px; height: 24px;
}
.toggle-switch input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    margin: 0;
}
.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    left: 3px; top: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* Buttons */
.btn-save {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-save:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(23, 173, 201, 0.35); }

.btn-x {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    opacity: 0.4;
    pointer-events: none;
}
.btn-x.enabled { opacity: 1; pointer-events: auto; }
.btn-x:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.14); }
.btn-x svg { width: 18px; height: 18px; }

.share-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--glass-text-sub);
    line-height: 1.5;
    display: none;
}
.share-hint.visible { display: block; }

/* Secondary action buttons on card screen */
.btn-action-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--glass-text);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
}
.btn-action-secondary:hover { background: rgba(255, 255, 255, 0.14); }

/* ===== Weapon Registration Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: #1a2a3e;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    max-height: 85dvh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}
.modal-body {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1;
}
.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Selected weapons preview */
.selected-weapons-preview {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.weapon-slot {
    width: 56px; height: 56px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    cursor: default;
    transition: border-color 0.2s;
}
.weapon-slot.filled {
    border-style: solid;
    border-color: var(--color-primary);
    background: rgba(23, 173, 201, 0.1);
    cursor: pointer;
}
.weapon-slot.filled:hover { border-color: #ff6b6b; }
.weapon-slot.filled:hover::after {
    content: "\00d7";
    position: absolute;
    top: -7px; right: -7px;
    background: #ff6b6b;
    color: #fff;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.weapon-slot img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 4px;
}
.weapon-slot-empty {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}
.weapon-count {
    font-size: 0.75rem;
    color: var(--glass-text-sub);
    text-align: right;
    margin-bottom: 12px;
}

/* Weapon search */
.weapon-search {
    position: relative;
    margin-bottom: 12px;
}
.weapon-search input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.weapon-search input::placeholder { color: var(--glass-text-sub); }
.weapon-search input:focus { border-color: var(--color-primary); }

/* Weapon grid */
.weapon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
    gap: 6px;
    max-height: 240px;
    overflow-y: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}
.weapon-grid-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 3px;
    transition: all 0.1s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.06);
}
.weapon-grid-item img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.weapon-grid-item:hover { border-color: rgba(255, 255, 255, 0.3); }
.weapon-grid-item.selected {
    border-color: var(--color-primary);
    background: rgba(23, 173, 201, 0.15);
}
.weapon-grid-item.selected::after {
    content: "\2713";
    position: absolute;
    top: -6px; right: -6px;
    background: var(--color-primary);
    color: #fff;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
}
.weapon-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px;
    font-size: 0.8rem;
    color: var(--glass-text-sub);
}

.btn-modal {
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.15s;
}
.btn-modal:hover { transform: translateY(-1px); }
.btn-modal-primary { background: var(--color-primary); color: #fff; }
.btn-modal-cancel { background: rgba(255, 255, 255, 0.1); color: var(--glass-text); }

/* ===== Weapon register prompt ===== */
.weapon-prompt {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 171, 0, 0.1);
    border: 1px solid rgba(255, 171, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffcc80;
}
.weapon-prompt button {
    margin-top: 10px;
    padding: 8px 20px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.15s;
}
.weapon-prompt button:hover { transform: translateY(-1px); }

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .screen { padding: 12px; }
    .card-header .team-name { font-size: 1.2rem; }
    .member-avatar { width: 40px; height: 40px; }
    .member-weapons img { width: 24px; height: 24px; }
}
