/* Custom Properties - Team USA House (Official Flag Colors) */
:root {
    --color-blue: #0A3161;      /* Official USA Blue */
    --color-blue-light: #164882; /* Lighter USA Blue for hover/gradients */
    --color-red: #B31942;       /* Official USA Red */
    --color-red-light: #D92553;  /* Lighter USA Red for hover/gradients */
    
    --color-white: #ffffff;
    --color-offwhite: #F4F6FA;
    
    --color-text: #ffffff;
    --color-text-soft: rgba(255, 255, 255, 0.85);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-blue);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    background: linear-gradient(180deg, var(--color-blue) 0%, #051b36 40%, #020d1c 100%);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-4 { margin-top: 2rem; }

/* Flag colors helpers */
.text-red {
    color: var(--color-red) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.text-white {
    color: var(--color-white) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-blue);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: var(--color-offwhite);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--color-red), var(--color-white), var(--color-blue));
    border-radius: 999px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-text-soft);
    margin-bottom: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 49, 97, 0.9); /* USA Blue with opacity */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo::after {
    content: '.';
    color: var(--color-red);
}

.navbar nav a {
    color: var(--color-text-soft);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.navbar nav a:hover {
    color: var(--color-red);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    filter: saturate(1.15) contrast(1.05);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 49, 97, 0.2) 0%,
        rgba(10, 49, 97, 0.5) 60%,
        var(--color-blue) 100%
    );
    z-index: 2;
}

.hero-buttons-only {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 2rem 5rem;
    display: flex;
    justify-content: center;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.hero-ctas .btn {
    flex: 1;
    text-align: center;
}

/* Intro Section */
.hero-intro {
    background: var(--color-white);
    color: var(--color-blue);
    padding: 5rem 0;
    position: relative;
}

.hero-intro h1 {
    color: var(--color-blue);
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.hero-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Base Sections */
section {
    padding: 6rem 0;
}

/* Vibe Section */
.vibe-section {
    background: var(--color-blue);
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 6px solid var(--color-red);
    border-radius: 10px;
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.features-list .icon {
    font-size: 1.6rem;
    margin-right: 1.2rem;
}

.vibe-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Interactive Vibe Selector & Jukebox Section */
.vibe-selector-section {
    background: linear-gradient(180deg, var(--color-blue) 0%, #051b36 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Selector Panel */
.vibe-selector-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vibe-tabs {
    display: flex;
    gap: 0.8rem;
}

.vibe-tab {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-soft);
    padding: 1rem 0.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.vibe-tab.active {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: 0 8px 20px rgba(179, 25, 66, 0.35);
}

.vibe-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.09);
    color: var(--color-white);
}

.vibe-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vibe-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vibe-card h3 {
    font-size: 2rem;
    font-weight: 800;
}

.vibe-tag {
    background: rgba(179, 25, 66, 0.15);
    color: var(--color-red-light);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(179, 25, 66, 0.3);
}

.vibe-card p {
    color: var(--color-text-soft);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.vibe-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-item h4 {
    color: var(--color-red-light);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    color: var(--color-white);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.4;
}

/* Jukebox Panel */
.jukebox-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.jukebox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.jukebox-now-playing {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.soundwave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    width: 30px;
    height: 25px;
}

.soundwave span {
    display: block;
    width: 3px;
    background-color: var(--color-red);
    border-radius: 2px;
    animation: bounce 1.2s infinite ease-in-out alternate;
}

.soundwave span:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.soundwave span:nth-child(2) { height: 60%; animation-delay: 0.3s; }
.soundwave span:nth-child(3) { height: 100%; animation-delay: 0s; }
.soundwave span:nth-child(4) { height: 70%; animation-delay: 0.5s; }
.soundwave span:nth-child(5) { height: 40%; animation-delay: 0.2s; }

.soundwave.paused span {
    animation-play-state: paused;
    height: 20% !important;
}

.song-info {
    display: flex;
    flex-direction: column;
}

.now-playing-label {
    font-size: 0.7rem;
    color: var(--color-red-light);
    font-weight: 800;
    letter-spacing: 2px;
}

.song-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-white);
}

.song-artist {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.jukebox-controls {
    display: flex;
}

.btn-play {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-play:hover {
    transform: scale(1.1);
    background: var(--color-red);
}

.btn-play:hover .play-icon {
    fill: var(--color-white);
}

.play-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-blue);
    transition: var(--transition);
}

.jukebox-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.panel-desc {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.songs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.song-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.song-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.song-details {
    display: flex;
    flex-direction: column;
}

.song-name {
    font-weight: 600;
    color: var(--color-white);
}

.song-singer {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.vote-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vote-count {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-red);
    font-size: 1.1rem;
}

.btn-vote {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-vote:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    box-shadow: 0 4px 12px rgba(179, 25, 66, 0.3);
}

.btn-vote.voted {
    background: var(--color-blue);
    border-color: var(--color-blue);
    pointer-events: none;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, var(--color-blue) 0%, #051b36 50%, var(--color-blue) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas:
        "feature stack"
        "wide wide";
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-feature {
    grid-area: feature;
}

.gallery-stack {
    grid-area: stack;
    display: grid;
    gap: 1.5rem;
}

.gallery-wide {
    grid-area: wide;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    filter: saturate(1.1) contrast(1.02);
}

.gallery-feature img {
    min-height: 560px;
}

.gallery-stack img {
    min-height: 272px;
}

.gallery-wide img {
    max-height: 380px;
}

/* Destinations Section */
.destinations-section {
    background: var(--color-offwhite);
    color: var(--color-blue);
}

.destinations-section h2 {
    color: var(--color-blue);
}

.destinations-section .subtitle {
    color: #4a5568;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.destination-card {
    background: var(--color-white);
    color: var(--color-blue);
    padding: 3rem 2rem;
    border-radius: 16px;
    border-top: 6px solid var(--color-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.destination-card h3 {
    color: var(--color-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-card .location {
    font-size: 1.2rem;
    color: var(--color-red);
    font-weight: 700;
    margin-bottom: 1rem;
}

.destination-card .details {
    color: #4a5568;
    font-size: 1rem;
}

.destination-card-wide {
    grid-column: 1 / -1;
    text-align: left;
    border-top: 6px solid var(--color-red);
}

.destination-card-wide h3,
.destination-card-wide .location {
    text-align: center;
}

/* FIFA Bars List */
.bars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.bars-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.bar-line {
    background: rgba(244, 246, 250, 0.7);
    border-left: 5px solid var(--color-blue);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.bar-line:hover {
    background: var(--color-white);
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bar-city {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-blue);
    margin-bottom: 0.4rem;
}

.bar-location {
    font-size: 0.95rem;
    color: #4a5568;
}

.bar-site {
    font-size: 0.85rem;
    color: var(--color-blue);
    margin-top: 0.4rem;
}

.bar-site a {
    color: inherit;
    text-decoration: none;
}

.bar-site a:hover {
    text-decoration: underline;
}

.suggestions-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-blue);
    text-align: center;
    font-weight: 600;
}

.suggestions-note strong {
    color: var(--color-red);
}

/* Sponsors Section */
.sponsors-section {
    background: var(--color-white);
    color: var(--color-blue);
    padding: 6rem 0;
}

.sponsors-section h2 {
    color: var(--color-blue);
}

.sponsors-section .subtitle {
    color: #4a5568;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-card {
    min-height: 220px;
    background: var(--color-white);
    border: 3px solid var(--color-red);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.sponsor-card img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.sponsor-temp-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-placeholder {
    background: linear-gradient(135deg, var(--color-red), var(--color-blue));
    border: none;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sponsor-placeholder span {
    color: var(--color-white);
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, var(--color-blue), #031124);
    padding: 8rem 0;
}

.vip-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vip-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vip-text p {
    color: var(--color-text-soft);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--color-blue);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    
    .navbar {
        padding: 1.2rem 2rem;
    }
    
    .navbar nav a {
        margin: 0 1rem;
        font-size: 0.85rem;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .vip-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 0;
    }
    
    .hero {
        min-height: 75vh;
    }
    
    .hero-buttons-only {
        padding: 0 1.5rem 3.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-intro {
        padding: 4rem 0;
    }
    
    .hero-intro h1 {
        font-size: 2.8rem;
    }
    
    .hero-intro p {
        font-size: 1.1rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .navbar nav a {
        margin: 0 0.5rem;
    }
    
    .navbar .btn {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "feature"
            "stack"
            "wide";
        gap: 1rem;
    }
    
    .gallery-feature img,
    .gallery-stack img,
    .gallery-wide img {
        min-height: 220px;
        max-height: none;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .bars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sponsor-card {
        min-height: 180px;
    }
    
    .vibe-tab {
        font-size: 0.8rem;
        padding: 0.8rem 0.2rem;
    }
    
    .vibe-card {
        padding: 1.5rem;
    }
    
    .vibe-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    .hero-intro h1 { font-size: 2.2rem; }
    
    .vibe-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .jukebox-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .jukebox-controls {
        align-self: flex-end;
    }
    
    .song-row {
        padding: 0.8rem 1rem;
    }
    
    .btn-vote {
        padding: 0.4rem 0.8rem;
    }
}
