/* ============================================
   PAYNIACS — TIM PAYNE TRIBUTE & FOLLOWER CHECK
   Premium | FIFA World Cup | Panini
   ============================================ */

:root {
    --gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.15);
    --gold-glow: rgba(255, 215, 0, 0.3);
    --purple: #B026FF;
    --green: #39FF14;
    --cyan: #00F0FF;
    --black: #000000;
    --white: #FFFFFF;
    --gray-1: #888888;
    --gray-2: #444444;
    --gray-3: #333333;
    --gray-4: #222222;
    --danger: #ff3333;
    --font-display: 'Chakra Petch', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    width: 100%;
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== BACKGROUND ===== */
.bg-stadium {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: url('images/stadium-bg.jpg') center center / cover no-repeat;
    opacity: 0.25;
    transform: scale(1.05);
}

.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 20, 60, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(176, 38, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.85) 100%);
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: 1;
    box-shadow: inset 0 0 150px 60px rgba(0,0,0,0.8);
    pointer-events: none;
}

#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* ===== APP ===== */
.app {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* ===== TOP BAR ===== */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 12px;
    margin-bottom: 8px;
}

.topbar-brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.topbar-logo {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
}

.topbar-reg {
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gray-1);
    vertical-align: super;
}

.topbar-live {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--danger);
    border-radius: 50%;
    animation: blink 1.2s infinite;
    box-shadow: 0 0 6px rgba(255,51,51,0.5);
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.live-text {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--danger);
    letter-spacing: 1.5px;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding-top: 8px;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 20px;
    aspect-ratio: 3/2;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.15);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.1) saturate(1.05);
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 7px 16px;
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 6px;
    margin-bottom: 18px;
    background: rgba(255,215,0,0.04);
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    display: flex;
    align-items: center;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title .line1 {
    display: block;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(255,215,0,0.25), 0 0 80px rgba(255,215,0,0.1);
    animation: goldPulse 3s ease-in-out infinite;
}

.hero-title .line2 {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

@keyframes goldPulse {
    0%, 100% { text-shadow: 0 0 40px rgba(255,215,0,0.25), 0 0 80px rgba(255,215,0,0.1); }
    50% { text-shadow: 0 0 60px rgba(255,215,0,0.4), 0 0 120px rgba(255,215,0,0.15); }
}

/* Live Counter Box */
.live-counter-box {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 12px;
    padding: 14px 20px;
    margin: 0 auto 20px;
    max-width: 320px;
    backdrop-filter: blur(10px);
}

.live-counter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.live-pulse {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--danger);
}

.live-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255,215,0,0.2);
    text-align: center;
}

.live-rate {
    font-size: 0.6rem;
    color: var(--gray-2);
    font-weight: 500;
}

.live-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.live-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hero-sub {
    font-size: 0.82rem;
    color: var(--gray-1);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
}

.hero-sub strong { color: var(--white); font-weight: 700; }
.gold { color: var(--gold); }

/* ===== INPUT ===== */
.input-wrap {
    max-width: 340px;
    margin: 0 auto 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-field {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 10px;
    padding: 4px 4px 4px 16px;
    transition: all 0.25s ease;
}

.input-field:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.08), 0 0 20px rgba(255,215,0,0.05);
    background: rgba(255,255,255,0.06);
}

.at {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 8px;
    opacity: 0.7;
}

#igHandle {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    outline: none;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

#igHandle::placeholder { color: var(--gray-2); font-weight: 400; }

/* ===== BUTTONS ===== */
.btn-main {
    font-family: var(--font-display);
    padding: 15px 24px;
    border-radius: 10px;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #FFD700, #FFAA00);
    color: var(--black);
    box-shadow: 0 4px 24px rgba(255,215,0,0.3), 0 0 60px rgba(255,215,0,0.08);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-main:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(255,215,0,0.4), 0 0 80px rgba(255,215,0,0.12); }
.btn-main:hover::before { transform: translateX(100%); }
.btn-main:active { transform: scale(0.97) translateY(0); }

.btn-audio {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gray-2);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.btn-audio:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.04); }
.btn-audio.playing { border-color: var(--green); color: var(--green); background: rgba(57,255,20,0.04); animation: playingPulse 2s ease-in-out infinite; }

@keyframes playingPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57,255,20,0.1); }
    50% { box-shadow: 0 0 0 8px rgba(57,255,20,0); }
}

/* ===== TRIBUTE SECTION ===== */
.tribute {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 30px;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tribute-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.tribute-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.tribute-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.tribute-stat {
    text-align: center;
}

.tribute-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255,215,0,0.2);
    line-height: 1;
}

.tribute-stat-label {
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-2);
    margin-top: 6px;
}

.tribute-bio {
    font-size: 0.85rem;
    color: var(--gray-1);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 28px;
}

.tribute-bio p { margin-bottom: 12px; }

.tribute-bio strong { color: var(--white); font-weight: 600; }

.tribute-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    text-align: center;
    margin-top: 18px;
    text-shadow: 0 0 20px rgba(255,215,0,0.15);
    letter-spacing: 1px;
}

/* World Cup Section */
.tribute-world-cup {
    background: rgba(255,215,0,0.04);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.wc-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
}

.wc-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 14px;
}

.wc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.wc-label {
    font-size: 0.5rem;
    color: var(--gray-2);
    letter-spacing: 2px;
    font-weight: 600;
}

.wc-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

.wc-text {
    font-size: 0.78rem;
    color: var(--gray-1);
    line-height: 1.5;
    font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 20px;
}

.gallery-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 160px 160px;
    gap: 8px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.8) 100%);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-tag {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.gallery-num, .gallery-min {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

/* ===== STORY / TIMELINE SECTION ===== */
.story {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 20px;
}

.story-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.story-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.story-timeline {
    position: relative;
    padding-left: 20px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--gray-2), var(--gold), var(--gray-2));
}

.story-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.story-dot {
    position: absolute;
    left: -17px;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gray-3);
    border: 1px solid var(--gray-2);
}

.story-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(255,215,0,0.3);
}

.story-dot.gold {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(255,215,0,0.5);
    width: 11px;
    height: 11px;
    left: -18px;
}

.story-time {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}

.story-content p {
    font-size: 0.8rem;
    color: var(--gray-1);
    line-height: 1.5;
}

.story-content strong { color: var(--white); font-weight: 600; }

/* ===== REVEAL ===== */
.reveal {
    text-align: center;
    padding: 36px 0 24px;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gray-1);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.reveal-num {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 14vw, 5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.95;
    color: var(--gold);
    text-shadow: 0 0 50px rgba(255,215,0,0.25), 0 0 100px rgba(255,215,0,0.1);
    min-height: 1.1em;
    transition: color 0.3s ease;
}

.reveal-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto;
    opacity: 0.4;
}

.reveal-handle {
    font-size: 1.05rem;
    color: var(--gray-1);
    margin: 6px 0 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.reveal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 6px;
    background: rgba(255,215,0,0.06);
    border: 1.5px solid rgba(255,215,0,0.2);
    color: var(--gold);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.reveal-quote {
    font-size: 0.88rem;
    color: var(--gray-1);
    font-style: italic;
    margin-bottom: 8px;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.reveal-pct {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--gray-2);
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== CROMO ===== */
.cromo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 28px;
    animation: fadeUp 0.6s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.style-picker {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.style-btn {
    font-family: var(--font-display);
    padding: 7px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--gray-2);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.style-btn.active, .style-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,215,0,0.06);
}

.style-btn-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.cromo-preview {
    position: relative;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 80px rgba(255,215,0,0.05);
}

#cromoCanvas {
    max-width: 100%;
    width: 280px;
    height: auto;
    display: block;
}

.cromo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 55%, transparent 60%);
    background-size: 200% 200%;
    animation: shineSweep 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 14px;
}

@keyframes shineSweep {
    0%, 100% { background-position: 200% center; }
    50% { background-position: -200% center; }
}

.download-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray-2);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.btn-dl {
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
}

.btn-dl:hover { border-color: var(--gold); background: rgba(255,215,0,0.08); color: var(--gold); }

.btn-share {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 8px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-share:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(225, 48, 108, 0.3); }

.btn-link {
    background: transparent;
    border: none;
    color: var(--gray-2);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.btn-link:hover { color: var(--white); }

/* ===== THE WALL ===== */
.wall {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 20px;
}

.wall-header {
    text-align: center;
    margin-bottom: 24px;
}

.wall-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wall-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 6px;
}

.wall-sub {
    font-size: 0.78rem;
    color: var(--gray-1);
    font-weight: 400;
}

.wall-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wall-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gray-4) 0%, var(--black) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.wall-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.wall-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wall-card:hover .wall-card-bg { opacity: 0.6; transform: scale(1.05); }

.wall-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.95) 100%);
}

.wall-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    z-index: 2;
}

.wall-card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 0 10px rgba(255,215,0,0.2);
}

.wall-card-name {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2px;
}

.wall-card-handle {
    font-size: 0.6rem;
    color: var(--gray-1);
    font-weight: 500;
    margin-bottom: 6px;
}

.wall-card-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--gold);
}

.wall-card-label {
    font-size: 0.5rem;
    color: var(--gray-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-item { text-align: center; }

.stats-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.stats-label {
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-2);
    margin-top: 4px;
}

.stats-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.08);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 24px 0 16px;
}

.footer-slogan {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255,215,0,0.15);
}

.socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 14px;
}

.socials a {
    color: var(--gray-2);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.socials a:hover { color: var(--gold); }

.legal {
    font-size: 0.6rem;
    color: var(--gray-3);
    line-height: 1.6;
    font-weight: 400;
}

/* ===== CONFETTI ===== */
#confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

/* ===== UTILS ===== */
.hidden { display: none !important; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 120px;
    }
    .gallery-item.large { grid-row: span 1; grid-column: span 2; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 2.4rem; }
    .reveal-num { font-size: 2.8rem; }
    #cromoCanvas { width: 240px; }
    .wall-grid { gap: 8px; }
    .wall-card-content { padding: 10px; }
    .tribute-stats { gap: 16px; }
    .tribute-stat-num { font-size: 1.6rem; }
    .wc-details { gap: 20px; }
}

@media (min-width: 481px) {
    .app { padding: 0 28px 40px; }
}
