/* SpinClub - Underground Vinyl Social Platform */
/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-walnut: #2a1a0a;
    --amber: #d4830a;
    --deep-orange: #c27008;
    --copper: #b8860b;
    --cream: #f5e6d0;
    --beige: #e8d5b7;
    --muted: #8b7355;
    --sidebar-width: 220px;
    --font-display: 'Playfair Display', serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Vinyl Sidebar */
.vinyl-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a0f05 100%);
    border-right: 1px solid #2a1a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    padding: 0 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--beige);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    transition: all 0.2s ease;
}

.nav-item:hover, .nav-item.active {
    background: rgba(212, 131, 10, 0.1);
    color: var(--amber);
}

.nav-icon { font-size: 1rem; }

.sidebar-badge {
    margin-top: auto;
    padding-top: 2rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--amber);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--amber);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid #2a1a0a;
    z-index: 1001;
}

.mobile-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--amber);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--amber);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    color: var(--beige);
    text-decoration: none;
    padding: 0.6rem 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(42, 26, 10, 0.5);
}

.age-badge-mobile {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--amber);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--amber);
    width: fit-content;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: radial-gradient(ellipse at 30% 50%, rgba(42, 26, 10, 0.4) 0%, transparent 60%),
                linear-gradient(180deg, var(--black) 0%, #0d0805 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23222' stroke-width='0.3' opacity='0.3'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
}

.hero-record { flex-shrink: 0; }

.spinning-vinyl {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-text { max-width: 550px; }

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--beige);
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: var(--amber);
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 131, 10, 0.3);
}

/* Audio Wave Separator */
.audio-wave-separator {
    padding: 2rem 0;
    overflow: hidden;
}

.audio-wave-separator svg {
    width: 100%;
    height: 40px;
}

/* Game Section */
.game-section {
    padding: 4rem 3rem;
    background: linear-gradient(180deg, #0d0805 0%, var(--black) 50%, #0d0805 100%);
}

.game-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 1px;
}

/* Turntable Console */
.turntable-console {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1008 0%, #0d0805 100%);
    border: 1px solid #2a1a0a;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 131, 10, 0.1);
}

.console-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a1a0a;
    flex-wrap: wrap;
}

.vu-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.vu-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vu-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--amber);
}

.session-meter {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.meter-bar {
    width: 100%;
    height: 8px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #2a1a0a;
}

.meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--amber), var(--deep-orange));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Card Area */
.game-table { text-align: center; }

.card-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-area-vs {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 2px;
}

.game-card {
    width: 120px;
    height: 170px;
    border-radius: 12px;
    position: relative;
    perspective: 600px;
}

.game-card .card-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e6d0 0%, #e8d5b7 100%);
    border-radius: 12px;
    border: 2px solid #d4830a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backface-visibility: hidden;
}

.game-card .card-back {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    backface-visibility: hidden;
}

.game-card.hidden .card-face { display: none; }
.game-card.hidden .card-back { display: flex; }
.game-card.revealed .card-face { display: flex; }
.game-card.revealed .card-back { display: none; }

.card-suit {
    font-size: 2.5rem;
    line-height: 1;
}

.card-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.card-suit-red { color: #c0392b; }
.card-suit-black { color: #1a1a1a; }

/* Game Controls */
.game-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.game-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: 2px solid var(--amber);
    background: transparent;
    color: var(--amber);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.game-btn:hover {
    background: var(--amber);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 131, 10, 0.3);
}

.game-btn:active { transform: translateY(0); }

.game-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-arrow { font-size: 0.8rem; }

.game-result {
    font-family: var(--font-mono);
    font-size: 1rem;
    min-height: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.game-result.win { color: #27ae60; }
.game-result.lose { color: #c0392b; }

.play-again-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--copper);
    color: var(--copper);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-again-btn:hover {
    background: var(--copper);
    color: var(--black);
}

/* Game History */
.game-history {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a1a0a;
}

.game-history h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.history-cards {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    min-height: 40px;
}

.history-card {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.6rem;
    background: #1a1a1a;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    border: 1px solid #2a1a0a;
}

.history-card.win { border-color: #27ae60; }
.history-card.lose { border-color: #c0392b; }

.last-round {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    min-height: 1.2rem;
}

/* Session Timeline */
.session-timeline {
    max-width: 750px;
    margin: 3rem auto 0;
}

.session-timeline h3 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}

.timeline-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.step-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark-walnut);
    border: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--amber);
}

.timeline-step span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--beige);
    text-align: center;
    max-width: 120px;
}

.timeline-line {
    width: 40px;
    height: 2px;
    background: var(--amber);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 3rem;
}

.stats-section h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #1a1008 0%, #0d0805 100%);
    border: 1px solid #2a1a0a;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.stat-card:hover { transform: translateY(-4px); }

.stat-equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 30px;
    margin-bottom: 1rem;
}

.eq-bar {
    display: block;
    width: 4px;
    background: var(--amber);
    border-radius: 2px;
    animation: equalize 1.5s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.eq-bar:nth-child(3) { height: 100%; animation-delay: 0.4s; }
.eq-bar:nth-child(4) { height: 60%; animation-delay: 0.6s; }
.eq-bar:nth-child(5) { height: 30%; animation-delay: 0.8s; }

@keyframes equalize {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Highlights Section */
.highlights-section {
    padding: 4rem 3rem;
    background: linear-gradient(180deg, var(--black) 0%, #0d0805 100%);
}

.highlights-section h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-sleeve {
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-sleeve:hover { transform: translateY(-8px) rotate(-2deg); }

.sleeve-cover {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.highlight-sleeve h4 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.highlight-sleeve p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Feed Section */
.feed-section {
    padding: 4rem 3rem;
}

.feed-section h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.feed-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feed-column h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a1a0a;
}

.feed-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feed-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: #1a1008;
    border-radius: 6px;
    border: 1px solid #2a1a0a;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--beige);
}

.feed-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feed-dot.win { background: #27ae60; }
.feed-dot.loss { background: #c0392b; }
.feed-dot.streak { background: var(--amber); }

/* FAQ Section */
.faq-section {
    padding: 4rem 3rem;
    background: linear-gradient(180deg, var(--black) 0%, #0d0805 100%);
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-console {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1008 0%, #0d0805 100%);
    border: 1px solid #2a1a0a;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-item {
    border-bottom: 1px solid #2a1a0a;
}

.faq-item:last-child { border-bottom: none; }

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-knob {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-walnut);
    border: 2px solid var(--amber);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.faq-item.open .faq-knob { background: var(--amber); }

.faq-question {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cream);
}

.faq-indicator {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--amber);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-indicator { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 0.5rem 1rem 2.25rem;
}

.faq-answer p {
    font-size: 0.85rem;
    color: var(--beige);
    line-height: 1.6;
    opacity: 0.85;
}

/* Lounge Section */
.lounge-section {
    padding: 4rem 3rem;
}

.lounge-banner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1008 0%, #2a1a0a 100%);
    border: 1px solid #3a2a1a;
    border-radius: 16px;
}

.lounge-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.lounge-content p {
    font-size: 0.95rem;
    color: var(--beige);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.lounge-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--amber);
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lounge-cta:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
}

.spinning-vinyl-sm { animation: spin 12s linear infinite; }

/* Footer */
.site-footer {
    padding: 4rem 3rem 2rem;
    background: #050505;
    border-top: 1px solid #2a1a0a;
}

.footer-responsible {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.footer-responsible h3 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-responsible p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.footer-orgs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-orgs a {
    color: var(--beige);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border: 1px solid #2a1a0a;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.footer-orgs a:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1a1a1a;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--amber); }

.footer-disclaimer {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 500px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-dashboard { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vinyl-sidebar { display: none; }
    .mobile-nav { display: block; }
    .main-content { margin-left: 0; padding-top: 60px; }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .spinning-vinyl { width: 180px; height: 180px; }

    .hero-section { padding: 3rem 1.5rem; min-height: auto; }
    .game-section { padding: 3rem 1.5rem; }
    .stats-section { padding: 3rem 1.5rem; }
    .highlights-section { padding: 3rem 1.5rem; }
    .feed-section { padding: 3rem 1.5rem; }
    .faq-section { padding: 3rem 1.5rem; }
    .lounge-section { padding: 3rem 1.5rem; }
    .site-footer { padding: 3rem 1.5rem 2rem; }

    .card-area { flex-direction: row; gap: 0.75rem; }
    .game-card { width: 100px; height: 145px; }
    .card-suit { font-size: 2rem; }
    .card-value { font-size: 1.5rem; }

    .game-controls {
        flex-direction: row;
        width: 100%;
    }

    .game-btn {
        flex: 1;
        justify-content: center;
        padding: 1rem;
    }

    .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: auto;
        gap: 1rem;
    }

    .feed-container { grid-template-columns: 1fr; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .lounge-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .lounge-content p { max-width: none; }

    .timeline-track { flex-wrap: wrap; gap: 0.5rem; }
    .timeline-line { width: 20px; }
    .timeline-step { min-width: 80px; }

    .console-top { justify-content: center; }

    .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
    .highlights-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .stats-dashboard { grid-template-columns: 1fr 1fr; }
    .game-card { width: 85px; height: 125px; }
    .card-suit { font-size: 1.5rem; }
    .card-value { font-size: 1.25rem; }
    .hero-section h1 { font-size: 2rem; }
}
