/* ==========================================================================
   Who See Boka Tour Stylesheet
   Design: Modern, Youthful, Vibrant Coastal Hip-Hop (Glassmorphism & Neon)
   ========================================================================== */

/* 1. Global Reset & Theme Variables */
:root {
    --bg-dark: #070e17;
    --bg-card: rgba(16, 32, 51, 0.65);
    --bg-card-hover: rgba(24, 49, 77, 0.85);
    --border-color: rgba(0, 240, 255, 0.15);
    --border-color-hover: rgba(0, 240, 255, 0.4);
    
    /* Neon Coastal Color System */
    --primary: #00f0ff;       /* Energetic Turquoise - Adriatic sea */
    --primary-glow: rgba(0, 240, 255, 0.3);
    --secondary: #ff6b57;     /* Sunset Coral - Hot summer */
    --secondary-glow: rgba(255, 107, 87, 0.3);
    --accent-green: #a6ff00;  /* Neon Lime - Youthful, Hip-hop */
    --accent-yellow: #fff500; /* Sun Gold - Lemon yellow */
    
    --text-main: #f0f5fa;
    --text-muted: #a0b2c6;
    --text-dark: #0b1622;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* 2. Background Glow Effects */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.18;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: 5%;
    left: -100px;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.bg-glow-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: 35%;
    right: -150px;
    animation: floatGlow 20s ease-in-out infinite alternate-reverse;
}

.bg-glow-3 {
    width: 450px;
    height: 450px;
    background: var(--accent-green);
    bottom: 10%;
    left: 10%;
    animation: floatGlow 18s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 40px) scale(1.15); }
}

/* 3. Typography & Standard Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-green);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

/* 4. Custom Buttons & UI Tokens */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #00c0ff);
    color: var(--text-dark);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: linear-gradient(135deg, var(--accent-green), var(--primary));
    color: var(--text-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px var(--secondary-glow);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--primary-glow);
    transform: translateY(-2px);
}

/* 5. Main Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 14, 23, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: var(--transition-smooth);
}

.logo-area:hover .nav-logo {
    transform: rotate(360deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.accent-text {
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(11, 22, 34, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-logo {
    height: 50px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-muted);
}

.drawer-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* 6. Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.badge-vibe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pulse-icon {
    display: flex;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Logo Cassette Frame */
.hero-visual {
    display: flex;
    justify-content: center;
}

.logo-frame {
    position: relative;
    background: radial-gradient(circle at top left, rgba(22, 45, 66, 0.7), rgba(7, 14, 23, 0.9));
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 380px;
    transition: var(--transition-smooth);
    animation: floatCard 6s ease-in-out infinite alternate;
}

.logo-frame:hover {
    border-color: var(--accent-green);
    box-shadow: 0 25px 50px rgba(166, 255, 0, 0.15);
}

.hero-logo-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    background: #0f1c2a;
}

.glass-plate {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.plate-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.plate-artist {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-green);
}

@keyframes floatCard {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

/* Wave divider svg styles */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: #0b1622;
}

/* 7. Section Layouts */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
}

/* 8. Pop-Culture Intro Cards */
.intro-section {
    background-color: #0b1622;
}

.intro-grid {
    grid-template-columns: repeat(3, 1fr);
}

.intro-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.intro-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
    background: rgba(0, 240, 255, 0.08);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.intro-card:nth-child(2) .card-icon {
    color: var(--secondary);
    background: rgba(255, 107, 87, 0.08);
    box-shadow: inset 0 0 10px rgba(255, 107, 87, 0.1);
}

.intro-card:nth-child(3) .card-icon {
    color: var(--accent-green);
    background: rgba(166, 255, 0, 0.08);
    box-shadow: inset 0 0 10px rgba(166, 255, 0, 0.1);
}

.intro-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.intro-card p {
    font-size: 0.95rem;
}

/* 9. Interactive Itinerary Tabs & Panes */
.itinerary-section {
    background: #070e17;
}

.itinerary-tabs {
    display: flex;
    background: rgba(11, 22, 34, 0.6);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 100px;
    margin-bottom: 50px;
    overflow-x: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.itinerary-tabs::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.itinerary-tabs {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    background: none;
    border: none;
    padding: 14px 20px;
    border-radius: 100px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tab-day-num {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tab-day-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), #00c0ff);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.tab-btn:hover:not(.active) {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.itinerary-panes {
    position: relative;
    min-height: 450px;
}

.itinerary-pane {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.itinerary-pane.active {
    display: block;
}

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

.pane-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.day-number-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 4px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.pane-info h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.route-sub {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.day-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.stops-box {
    background: rgba(22, 45, 66, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.stops-box h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--accent-yellow);
}

.stops-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stops-box li {
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.stops-box li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.experience-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 107, 87, 0.06);
    border: 1px dashed rgba(255, 107, 87, 0.4);
    padding: 16px 20px;
    border-radius: 12px;
}

.exp-icon {
    font-size: 1.8rem;
    color: var(--secondary);
}

.exp-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Image Visual & Overlay Cards */
.pane-visual {
    position: relative;
    height: 100%;
}

.pane-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    min-height: 400px;
}

.pane-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.pane-img-wrapper:hover .pane-img {
    transform: scale(1.05);
}

.song-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(7, 14, 23, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.song-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 6px;
}

.song-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.feat-artist {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
}

.song-quote {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
}

.song-links {
    display: flex;
    gap: 10px;
}

.song-link-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.song-link-btn.yt {
    background: #ff0000;
}

.song-link-btn.yt:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.song-link-btn.sp {
    background: #1db954;
}

.song-link-btn.sp:hover {
    background: #1aa34a;
    transform: translateY(-2px);
}

/* 10. Glossary Cards Grid */
.glossary-section {
    background: #0b1622;
}

.glossary-grid {
    grid-template-columns: repeat(3, 1fr);
    perspective: 1000px;
}

.glossary-card {
    height: 220px;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.glossary-card.flipped {
    transform: rotateY(180deg);
}

.glossary-front, .glossary-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.glossary-front {
    background: var(--bg-card);
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.glossary-card:hover .glossary-front {
    background: var(--bg-card-hover);
    border-color: var(--secondary);
    box-shadow: 0 12px 30px var(--secondary-glow);
}

.glossary-front h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.term-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    background: rgba(166, 255, 0, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
}

.card-hint {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-hint::before {
    content: '\f021';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.glossary-back {
    background: #14283c;
    transform: rotateY(180deg);
    align-items: flex-start;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.08);
}

.glossary-back h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.def {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.lyric-quote {
    font-size: 0.8rem;
    color: var(--accent-yellow);
    font-style: italic;
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 2px solid var(--accent-yellow);
    width: 100%;
}

.back-close {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 11. Jukebox Section & Vinyl Player */
.jukebox-section {
    background: #070e17;
}

.jukebox-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background: radial-gradient(circle at center, rgba(16, 32, 51, 0.8), rgba(7, 14, 23, 0.95));
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
}

.jukebox-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 30px;
}

/* Vinyl styles */
.vinyl-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #222, #050505 40%, #111 41%, #050505 50%, #151515 51%, #050505 60%, #1e1e1e 61%, #000 70%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 0 10px rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

/* Grooves on vinyl */
.vinyl-record::after {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
}

.vinyl-label {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #111;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.label-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
}

.label-artist {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.label-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 2px;
    max-height: 35px;
    overflow: hidden;
    line-height: 1.1;
}

/* Spindle hole */
.vinyl-label::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--bg-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.8);
}

/* Vinyl needle */
.player-needle {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 120px;
    height: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cpath d='M80 10 L50 70 L25 80 L20 100' stroke='%23888' stroke-width='4' fill='none'/%3E%3Ccircle cx='80' cy='10' r='10' fill='%23555'/%3E%3Crect cx='10' cy='95' width='20' height='20' rx='3' fill='%23ff6b57'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: 80px 10px;
    transform: rotate(-30deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
}

/* Spining classes */
.vinyl-record.spinning {
    animation: spinVinyl 3.5s linear infinite;
}

.player-needle.playing {
    transform: rotate(5deg);
}

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

/* Player controls info area */
.player-controls {
    text-align: center;
}

.player-controls h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.player-controls p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.player-buttons {
    margin-bottom: 20px;
}

.play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--secondary);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 15px var(--secondary-glow);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--secondary-glow);
    background: var(--accent-green);
    color: var(--text-dark);
}

.jukebox-external-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: fadeIn 0.4s ease forwards;
}

/* Tracks lists */
.jukebox-tracks {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar styles for Tracks */
.jukebox-tracks::-webkit-scrollbar {
    width: 6px;
}

.jukebox-tracks::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}

.jukebox-tracks::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.2);
    border-radius: 10px;
}

.jukebox-tracks::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.track-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.25);
    transform: translateX(5px);
}

.track-item.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--primary);
}

.track-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
}

.track-item.active .track-num {
    color: var(--primary);
}

.track-meta {
    flex: 1;
}

.track-meta h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-badge {
    font-size: 0.75rem;
    background: rgba(255, 107, 87, 0.1);
    color: var(--secondary);
    padding: 2px 6px;
    border-radius: 4px;
}

.track-meta p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.track-duration {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.track-item:hover .track-duration {
    color: var(--primary);
}

.track-item.active .track-duration {
    color: var(--primary);
}

/* 12. Lyric Quiz Styles */
.quiz-section {
    background: #0b1622;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
}

.quiz-card-box, .quiz-summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
}

.quiz-progress-wrapper {
    margin-bottom: 25px;
}

.quiz-progress-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.quiz-question-area {
    margin-bottom: 30px;
}

.quiz-question {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opt-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 24px;
    border-radius: 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 16px;
}

.quiz-opt-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    transform: translateX(4px);
}

.quiz-opt-btn:disabled {
    cursor: not-allowed;
}

/* Correct / Incorrect states */
.quiz-opt-btn.correct {
    background: rgba(39, 174, 96, 0.15);
    border-color: #27ae60;
    color: #2ecc71;
    font-weight: 700;
}

.quiz-opt-btn.correct::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2ecc71;
}

.quiz-opt-btn.incorrect {
    background: rgba(235, 87, 87, 0.15);
    border-color: #eb5757;
    color: #ff6b6b;
}

.quiz-opt-btn.incorrect::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff6b6b;
}

.quiz-opt-letter {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 240, 255, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Feedback card */
.quiz-answer-feedback {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 25px;
    animation: fadeIn 0.4s ease forwards;
}

.feedback-icon {
    font-size: 2rem;
    color: #2ecc71;
}

.quiz-answer-feedback.wrong-feedback .feedback-icon {
    color: #ff6b6b;
}

.feedback-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feedback-text p {
    font-size: 0.85rem;
}

/* Score summary styling */
.quiz-summary-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summary-icon {
    font-size: 3.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    animation: bounce 2s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.summary-score-text {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.summary-badge-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    width: 100%;
}

.summary-badge-card h3 {
    font-size: 1.6rem;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.summary-badge-card p {
    font-size: 0.95rem;
}

/* 13. Booking Form Section */
.booking-section {
    background: radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.08), transparent 50%), #070e17;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.booking-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.perk i {
    color: var(--accent-green);
    background: rgba(166, 255, 0, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
}

.booking-form-box h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-group input, .form-group select {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 18px;
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.form-group select option {
    background: #0b1622;
    color: var(--text-main);
}

.booking-success {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.4s ease forwards;
}

.booking-success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 16px;
}

.booking-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* 14. Footer Styles */
.main-footer {
    background: #04080d;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    height: 55px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--text-dark);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-legal p {
    font-size: 0.85rem;
}

.disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.5;
    max-width: 800px;
}

/* ==========================================================================
   15. Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .intro-card:last-child {
        grid-column: span 2;
    }
    
    .glossary-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .jukebox-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 35px;
    }
    
    .vinyl-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .player-needle {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .badge-vibe {
        margin: 0 auto 24px auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 35px auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pane-visual {
        order: -1;
    }
    
    .pane-img-wrapper {
        min-height: 300px;
    }
    
    .glossary-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .itinerary-tabs {
        border-radius: 20px;
        padding: 4px;
    }
    
    .tab-btn {
        min-width: 110px;
        padding: 10px;
    }
    
    .vinyl-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .vinyl-label {
        width: 80px;
        height: 80px;
    }
    
    .player-needle {
        width: 100px;
        height: 120px;
        right: 0px;
    }
    
    .quiz-card-box, .booking-form-box {
        padding: 24px;
    }
}

/* 16. YouTube Video Jukebox Screen */
.player-screen {
    width: 100%;
    max-width: 340px;
    height: 190px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6), inset 0 0 15px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.player-screen:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
}

.video-placeholder i {
    font-size: 2.8rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
    animation: tvPulse 2s ease-in-out infinite;
}

.video-placeholder p {
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes tvPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 12px var(--primary)); }
    100% { transform: scale(1); opacity: 0.8; }
}

.player-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

