/* ==========================================
   HIGGSFIELD SYSTEM STYLING (style.css)
   ========================================== */

/* 1. DESIGN VARIABLES & TOKENS */
:root {
    --color-bg: #0b0c10;
    --color-bg-alt: #12141c;
    --color-text: #f5f6fa;
    --color-text-muted: #8b949e;
    --color-primary: #ff4500; /* Neon Orange-Red matching the image's bottom gradient */
    --color-primary-glow: rgba(255, 69, 0, 0.35);
    --color-primary-dim: #a82e00;
    --color-success: #00ff66;
    --color-accent: #00f0ff; /* Cyber Cyan */
    
    /* Neumorphism Light Gray variables */
    --neumorph-bg: #ececee;
    --neumorph-light: #ffffff;
    --neumorph-shadow: #cfd1d3;
    --neumorph-text-main: #2b2d35;
    --neumorph-text-muted: #75798a;
    
    /* Glassmorphism Tokens */
    --glass-bg: rgba(18, 20, 28, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 69, 0, 0.3);
    --glass-blur: blur(16px);
    
    /* Typography */
    --font-heading: 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE RESET & INITIAL SETUP */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

/* Lenis Smooth Scroll resets */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-bg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #202430;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* 3. LAYOUT UTILITIES */
.highlight {
    color: var(--color-primary);
    text-shadow: 0 0 10px var(--color-primary-glow);
}

.text-orange {
    color: var(--color-primary);
}

.text-green {
    color: var(--color-success);
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}


/* 4. BUTTONS & UI ELEMENTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    background-color: var(--color-primary-dim);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.2);
    transform: translateY(-2px);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    backdrop-filter: var(--glass-blur);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* 5. MAIN NAVIGATION HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    
    /* Frosted Glass: Highly transparent light-grey with intense blur */
    background: rgba(225, 227, 235, 0.3); 
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.02), 
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 12px 5%;
    background: rgba(225, 227, 235, 0.5); /* Slightly less transparent when scrolled for text contrast */
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
    border-bottom-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05), 
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #12141c; /* Dark text */
}

.brand-logo-svg {
    height: 1.4rem;
    width: auto;
    color: #12141c; /* Inherit dark color */
    display: block;
}

.badge {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background-color: var(--color-primary);
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 22px; /* Tighter gap to let Vietnamese words fit on one line */
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 0 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700; /* Bolder for improved clarity */
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555866; /* Darker grey link text for readability */
    padding: 8px 0;
    position: relative;
    white-space: nowrap; /* Prevent title words from wrapping to two lines */
}

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

.nav-link:hover, .nav-link.active {
    color: #12141c; /* Dark text on hover/active */
}

/* Header UI Elements Overrides for Liquid Glass Header */
.main-header .btn-outline {
    border: 1px solid rgba(18, 20, 28, 0.15);
    color: #12141c;
    background-color: rgba(18, 20, 28, 0.03);
}

.main-header .btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(255, 69, 0, 0.05);
}

.main-header .mobile-menu-toggle {
    color: #12141c;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.25rem;
    color: var(--color-text);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

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

/* 6. HERO SECTION (Cover Image Trang Chủ) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background-color: #e9e8e4; /* Matches the off-white top of the image */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%; /* Extra height for vertical parallax scrolling */
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    transform-origin: center top;
    will-change: transform;
}

.hero-bg-subject {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%; /* Extra height for vertical parallax scrolling */
    object-fit: cover;
    object-position: center top;
    z-index: 3;
    pointer-events: none;
    transform-origin: center top;
    will-change: transform;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-top: -30px;
}

.hero-content {
    max-width: 650px;
}

.cyber-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.cyber-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    box-shadow: 0 0 6px var(--color-primary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Sidebar Tech Panel */
.hero-sidebar {
    padding: 30px;
    border-left: 3px solid var(--color-primary);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.panel-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.diagnostic-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.diag-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.diag-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.diag-value {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
}

.panel-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 69, 0, 0.3), rgba(255, 255, 255, 0));
    margin: 25px 0;
}

.panel-footer .terminal-text {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--color-primary);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--color-text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* 7. SECTION GENERAL HEADERS */
section {
    padding: 100px 5%;
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

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

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

/* 8. SPECIFICATIONS SECTION (Interactive Visualizer) */
.specs-section {
    background-color: var(--color-bg-alt);
}

.specs-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visualizer-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.visualizer-image-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visualizer-img {
    width: 100%;
    height: auto;
    filter: brightness(0.85) contrast(1.05);
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--color-primary-glow);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.hotspot::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px dashed var(--color-primary);
    border-radius: 50%;
    animation: spin 8s linear infinite;
    opacity: 0.5;
}

.hotspot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hotspot:hover, .hotspot.active {
    background-color: var(--color-accent);
    border-color: #fff;
    box-shadow: 0 0 20px var(--color-accent);
}

.hotspot:hover::after, .hotspot.active::after {
    border-color: var(--color-accent);
}

/* Specs details */
.specs-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-card {
    padding: 30px;
    opacity: 0.5;
    transform: scale(0.98);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.spec-card.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    max-height: 500px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-width: 1px;
    border-left: 4px solid var(--color-primary);
}

.spec-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.spec-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.spec-card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.spec-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spec-specs span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
}

/* 9. COLLECTION SECTION */
.collection-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--color-text);
    border-color: var(--color-primary);
    background-color: rgba(255, 69, 0, 0.05);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.1);
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card.hidden {
    display: none;
}

.product-img-container {
    position: relative;
    background-color: #1a1d26;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

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

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 12, 16, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 5;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
    background-color: rgba(18, 20, 28, 0.3);
    border-top: 1px solid var(--glass-border);
}

.product-sku {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    display: block;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.product-status {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 2px;
    color: var(--color-text-muted);
}

/* 10. ABOUT / CONCEPT SECTION */
.about-section {
    background-color: var(--color-bg-alt);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--color-text);
}

.about-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--color-primary-glow);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.about-visual {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 69, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 69, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 3;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    z-index: 4;
    animation: scanAnimation 4s linear infinite;
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(1) contrast(1.1) brightness(0.7);
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
    background: rgba(11, 12, 16, 0.85);
    border: 1px solid var(--color-primary);
    padding: 10px 18px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    backdrop-filter: var(--glass-blur);
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.badge-serial {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-text);
}

/* 11. CONTACT / NEWSLETTER SECTION */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-top: 3px solid var(--color-primary);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 0.25em;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.form-group input, .form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 4px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.btn-block {
    width: 100%;
}

.form-feedback {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 24px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.form-feedback.success {
    color: var(--color-success);
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.2);
}

.form-feedback.error {
    color: var(--color-primary);
}

/* 12. FOOTER SECTION */
.main-footer {
    background-color: #050608;
    padding: 80px 5% 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.links-col h4 {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.security-stamp {
    font-family: monospace;
    color: var(--color-success);
    letter-spacing: 0.05em;
}

/* 13. GLASSMORPHIC DETAIL MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 800px;
    width: 90%;
    padding: 40px;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.modal-img-wrapper {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.modal-desc-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.modal-title {
    font-size: 1.8rem;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

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

.modal-specs-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
    font-size: 0.85rem;
}

.modal-spec-lbl {
    color: var(--color-text-muted);
}

.modal-spec-val {
    font-weight: 600;
}

/* 14. UI AUDIO CONTROL */
.ui-audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    backdrop-filter: var(--glass-blur);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--color-text-muted);
}

.ui-audio-control:hover {
    color: var(--color-text);
    border-color: var(--color-primary);
}

.ui-audio-control.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

/* 15. ANIMATIONS & KEYFRAMES */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 69, 0, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0.3; transform: translate(-50%, 8px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes scanAnimation {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

/* Scroll Animations helper classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-text-reveal {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.5s; }

.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.6s; }
.hero-sidebar { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes textReveal {
    to { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}


/* ==========================================
   16. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }
    .hero-title {
        font-size: 3.2rem;
    }
}

/* ==========================================
   SCROLLYTELLING & PAGE 2 STYLING
   ========================================== */

/* Scrollytelling Scroll length spacer (400vh tall parent) */
.scrollytelling-wrapper {
    height: 300vh;
    position: relative;
    background-color: #e9e8e4; /* Matches image background */
}

/* Home hero is sticky inside the wrapper, so it stays fixed for 200vh of scroll */
.hero-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

/* Container for scrollytelling lines */
.scrolly-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: auto; /* Remove stacking context to allow children to stack individually */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Scrambling LOWT Title */
.scrolly-scramble-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 16vw, 14rem);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem); /* Evenly spaced gap, fully responsive */
    z-index: 4; /* Sits in front of the hero subject cutout (z-index: 3) */
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Make each character fixed width so they don't jitter */
.scramble-char {
    display: inline-block;
    width: 1.3ch; /* Increased to fit wider characters like W perfectly centered */
    text-align: center;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Scrambling state: slightly dim, neon green or cyan glow */
.scramble-char.scrambling {
    color: #dfb285; /* Bright warm amber-brown */
    text-shadow: 0 0 10px rgba(223, 178, 133, 0.8), 0 0 20px rgba(223, 178, 133, 0.4);
    font-weight: 400; /* Thinner looking like code during decryption */
    transform: scale(0.92);
}

/* Settled state: solid bright white with premium look */
.scramble-char.settled {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    transform: scale(1);
    animation: settle-pulse 0.4s ease-out;
}

@keyframes settle-pulse {
    0% {
        transform: scale(1.25);
        color: #dfb285;
        text-shadow: 0 0 25px rgba(223, 178, 133, 1);
    }
    100% {
        transform: scale(1);
        color: #ffffff;
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.3);
    }
}
/* Scroll Blur Overlay */
.scroll-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    background-color: rgba(244, 241, 234, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    will-change: opacity;
}

/* Liquid Glass Logo Styling */
.liquid-glass-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 7; /* Sits above the blur overlay */
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

.liquid-glass-logo-svg {
    width: clamp(15rem, 50vw, 40rem);
    height: auto;
    display: block;
    stroke: url(#glass-gradient) !important;
    filter: drop-shadow(-2px -2px 2px rgba(255, 255, 255, 0.45)) 
            drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.35)) 
            drop-shadow(0 15px 30px rgba(0, 0, 0, 0.42));
}


/* Page 2 styling - Interactive Glassmorphic Music Player */
.page-two-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4vh 5% 4vh 5%;
    gap: 3vh; /* Balanced gap between carousel and console */
    z-index: 15; /* Sits above the sticky hero once scrolled past */
    overflow: hidden;
    background-color: #ced0d2; /* Solid concrete gray background */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.8s ease;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.07); /* Delicate upward shadow for layering depth */
}



/* 3D Carousel container */
.carousel-container {
    width: 100%;
    height: 52vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin: auto 0;
    position: relative;
    z-index: 5;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.carousel-card {
    position: absolute;
    width: 290px;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    background: #0d0e12;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s, filter 0.65s, z-index 0.65s;
    cursor: pointer;
    user-select: none;
}

.card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.8s ease;
}

.carousel-card:hover .card-cover {
    transform: scale(1.04);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(13, 14, 18, 0.95) 0%, rgba(13, 14, 18, 0.6) 50%, transparent 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.carousel-card.active .card-info {
    opacity: 1;
    transform: translateY(0);
}

.card-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.card-artist {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Bottom Media Controller Console */
.player-bottom-console {
    width: 80%;
    border-radius: 24px;
    background: rgba(13, 14, 18, 0.88); /* Sleek dark glass deck for perfect contrast */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    padding: 16px 30px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
    flex-shrink: 0;
}

.player-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.player-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.player-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.play-pause-btn:hover {
    background: #fff;
    color: #0d0e12;
    transform: scale(1.06);
}

/* Middle Track Info & Progress */
.player-track-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    margin: 0 24px;
}

.player-mini-cover {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.track-meta {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.track-title-artist {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    min-width: 0;
    width: 100%;
}

.track-title-container {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 12px;
    position: relative;
}

.track-title {
    font-family: var(--font-sans);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    display: inline-block;
    transform: translateX(0);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    10% { transform: translateX(0); }
    45% { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); }
    55% { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); }
    90% { transform: translateX(0); }
    100% { transform: translateX(0); }
}

.track-title.marquee-active {
    animation: marquee 8s linear infinite;
}

.track-artist {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    border-radius: 2px;
}

.time-display {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    width: 90px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

/* Right Controls & Volume */
.player-right-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 180px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.volume-slider-wrapper {
    width: 0px;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.volume-container:hover .volume-slider-wrapper {
    width: 70px;
    margin-left: 4px;
}

.volume-slider {
    width: 70px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.volume-progress {
    height: 100%;
    background: #fff;
    width: 80%;
    border-radius: 2px;
}

/* Tablet adjustments for scrolly lines */
@media (max-width: 768px) {
    .scrolly-line {
        font-size: 1.4rem;
        width: 85%;
        max-width: none;
    }
    .scrolly-line:nth-child(odd) {
        left: 7.5%;
        right: 7.5%;
        text-align: center;
    }
    .scrolly-line:nth-child(even) {
        left: 7.5%;
        right: 7.5%;
        text-align: center;
    }

    .carousel-container {
        height: 48vh;
    }
    .carousel-card {
        width: 200px;
        height: 270px;
        border-radius: 12px;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .card-info {
        padding: 15px 12px;
    }
    .player-bottom-console {
        width: 92%;
        height: auto;
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        gap: 12px;
    }
    .player-controls-row {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        width: 100%;
    }
    .player-controls {
        gap: 24px;
        justify-content: center;
        width: 100%;
    }
    .player-track-info {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .track-meta {
        flex-grow: 1;
        min-width: 0;
    }
    .track-title-artist {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        width: 100%;
        min-width: 0;
    }
    .track-title-container {
        width: 100%;
        margin-right: 0;
    }
    .track-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 0.9rem;
    }
    .track-artist {
        font-size: 0.75rem;
    }
    .player-right-controls {
        display: none;
    }
    .time-display {
        width: auto;
        flex-shrink: 1;
    }
    .volume-container {
        display: none; /* Hide volume controls on mobile as hardware keys are preferred */
    }
}

@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    .hero-bg-img, .hero-bg-subject {
        object-position: center 60px;
    }
    .main-header {
        padding: 15px 5%;
    }
    .nav-links {
        display: none; /* Mobile menu active */
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 0;
        text-align: center;
        justify-items: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .cyber-tag {
        padding-left: 0;
    }
    .cyber-tag::before {
        display: none;
    }
    .hero-sidebar {
        max-width: 500px;
        width: 100%;
        border-left: none;
        border-top: 3px solid var(--color-primary);
    }
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-container {
        padding: 30px 20px;
    }
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .ui-audio-control {
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================
   GLASSMORPHIC COMPACT BOTTOM CONSOLE
   ========================================== */
.player-bottom-console {
    width: 80%;
    border-radius: 24px;
    background: rgba(225, 227, 235, 0.15); /* Premium glass panel */
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.player-playlist-row {
    width: 100%;
    max-height: 180px;
    opacity: 1;
    overflow-y: auto;
    overflow-x: hidden !important; /* Prevent horizontal scrolling */
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Scrollbar for compact tracklist */
.player-playlist-row::-webkit-scrollbar {
    width: 4px;
}
.player-playlist-row::-webkit-scrollbar-track {
    background: transparent;
}
.player-playlist-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.player-playlist-row::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

#playlistToggleBtn {
    display: none;
}

.compact-track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

.compact-track-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(2px);
}

.compact-track-item.active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.compact-track-index {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    width: 18px;
    text-align: center;
}

.compact-track-item.active .compact-track-index {
    color: #fff;
}

.compact-track-cover {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
}

.compact-track-details {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.compact-track-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-track-artist {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-track-item.active .compact-track-title {
    color: #fff;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compact-track-duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
}

.compact-track-item.active .compact-track-duration {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   PAGE 3 STYLING - DJ INFO & PROFILE REVEAL
   ========================================== */
/* ==========================================
   PAGE 3 STYLING - STAGE III CUTOUT TRANSITION
   ========================================== */
.page-three-section {
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 10;
    overflow: hidden;
}

.page3-bg-orange {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #ffe9d1 100%);
    z-index: 0;
}

.page3-bg-sage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c6ded0 0%, #b5cebf 100%);
    z-index: 2; /* Sits on top of the image container */
    opacity: 0;
    transition: opacity 0.15s ease-out; /* Smooth transition */
}

.page3-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Under the sage green overlay */
    overflow: hidden;
}

/* Vignette overlay on top of the image to make text extremely legible */
.page3-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.45) 0%, 
        rgba(0, 0, 0, 0.1) 35%, 
        rgba(0, 0, 0, 0.1) 65%, 
        rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}
.page3-img-scaler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.page3-img {
    width: 100%;
    height: 106%; /* Extra height to prevent gaps during subtle vertical drift in pinning timeline */
    object-fit: cover; /* Covers full screen */
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.page3-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Above the sage overlay */
    pointer-events: none; /* Allows scrolling and hovering of backgrounds */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10vh 8%;
    box-sizing: border-box;
}

.page3-title-top {
    position: relative;
    height: 140px; /* fixed container height for stable 3D perspective zone */
    width: 100%;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2vh;
}

.title-word {
    position: absolute; /* Stack words on top of each other */
    font-family: var(--font-heading);
    font-size: 6.8rem; /* Bold, solid block letter */
    font-weight: 900;
    color: #ffffff; /* Solid filled text */
    -webkit-text-stroke: none;
    letter-spacing: 0.06em;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    opacity: 0;
    transform: rotateX(90deg) translateY(30px); /* 3D rotate setup for flip entry */
    display: inline-block;
    will-change: transform, opacity;
    white-space: nowrap;
}

.page3-details-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 2vh;
}

.page3-detail-left,
.page3-detail-right {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

.page3-detail-right {
    align-items: flex-end;
    text-align: right;
}

.detail-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: color 0.8s ease-out;
}

.page-three-section.sage-active .detail-label {
    color: rgba(54, 97, 85, 0.7);
}

.artist-real-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.artist-birthdate {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff6e00; /* Digital orange clock vibe */
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .page3-content {
        padding: 6vh 5%;
    }
    .page3-title-top {
        height: 70px; /* smaller container height on mobile */
        margin-top: 10vh; /* Moved down about 2cm on portrait screens */
        perspective: 1000px;
    }
    .title-word {
        position: absolute; /* force absolute stacking on mobile too */
        font-size: 3.8rem; /* even larger size because it's single words now! */
        color: #ffffff;
        -webkit-text-stroke: none;
        letter-spacing: 0.05em;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    }
    .page3-details-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 4vh;
    }
    .page3-detail-left,
    .page3-detail-right {
        align-items: center;
        text-align: center;
    }
    .artist-real-name {
        font-size: 2.0rem;
    }
    .artist-birthdate {
        font-size: 1.8rem;
    }
    .detail-label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
}

/* ==========================================
   PAGE 4 STYLING - STAGE IV DJ INFO
   ========================================== */
.page-four-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8vh 5%;
    overflow: hidden;
    background: linear-gradient(135deg, #c6ded0 0%, #b5cebf 100%);
}

.dj-profile-card {
    background: rgba(13, 14, 18, 0.55); /* Dark smoked glass */
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 0; /* Padding is 0 to allow the photo side to float with margins */
    width: 100%;
    max-width: 1100px; /* Expanded card width to display a large photo side-by-side with text */
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2; /* Sits above the fixed background */
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    overflow: hidden;
    transform: translateY(60px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.page-four-section.card-active .dj-profile-card {
    transform: translateY(0);
    opacity: 1;
}

.dj-photo-side {
    width: 45%;
    margin: 24px;
    border-radius: 20px; /* Added slight border radius for the portrait image container */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dj-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dj-photo-side:hover .dj-profile-img {
    transform: scale(1.04);
}

.dj-info-side {
    width: 55%;
    padding: 48px 48px 48px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dj-cyber-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 8px;
}

.dj-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dj-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 24px 0; /* Left aligned */
    border-radius: 2px;
}

.dj-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(226, 228, 237, 0.85);
    margin-bottom: 32px;
    font-family: var(--font-body);
}

.dj-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 16px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}

.stat-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
}

.dj-socials {
    display: flex;
    justify-content: flex-start; /* Left aligned socials */
    gap: 20px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .dj-profile-card {
        flex-direction: column;
        max-width: 480px;
        padding: 0;
        margin: 0 16px;
    }
    .dj-photo-side {
        width: calc(100% - 40px);
        height: 400px;
        margin: 20px 20px 0 20px;
        border-radius: 16px;
    }
    .dj-info-side {
        width: 100%;
        padding: 32px 24px;
    }
    .dj-title {
        font-size: 2.2rem;
    }
    .dj-bio {
        font-size: 0.9rem;
    }
    .stat-value {
        font-size: 0.85rem;
    }
}

/* ==========================================
   LOOKBOOK IMAGE SECTION (Page 4.5)
   ========================================== */
.lookbook-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(to bottom, #0c2646 0%, #3678ad 100%); /* Seamless gradient matching image_6.jpg edge colors */
}

.lookbook-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.lookbook-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.lookbook-img:hover {
    transform: scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.lookbook-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    padding: 10vh 0;
}

.watermark-line {
    width: 180%;
    white-space: nowrap;
    font-family: 'Outfit', 'Montserrat', 'Impact', sans-serif;
    font-size: 13vw;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    will-change: transform;
}

.watermark-line.line-1 {
    color: #b5cebf; /* Solid sage green matching DJ info page background */
    opacity: 0.9;   /* Fully bold/opaque solid color */
    align-self: flex-start;
    transform: translateX(-15%);
}

.watermark-line.line-2 {
    color: #b5cebf; /* Solid sage green matching DJ info page background */
    opacity: 0.9;   /* Fully bold/opaque solid color */
    align-self: flex-end;
    transform: translateX(15%);
}

/* Mobile responsive adjustments to make image smaller and watermark text larger */
@media (max-width: 768px) {
    .lookbook-container {
        width: 76%;       /* Shrink image size on mobile screens (was 90%) */
    }
    .watermark-line {
        font-size: 32vw;  /* Double size on mobile screens (was 16vw) for massive high-impact feel */
        width: 320%;      /* Wider bounds to cover horizontal parallax transition */
    }
    .watermark-line.line-1 {
        transform: translateX(-25%);
    }
    .watermark-line.line-2 {
        transform: translateX(25%);
    }
}

/* ==========================================
   VENUES & CLUBS SECTION (Page 4.6)
   ========================================== */
.venues-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(to bottom, #c7dede 0%, #627272 100%); /* Seamless gradient matching image_7.jpg */
}

.venues-container {
    width: 90%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    will-change: transform;
}

.venues-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    will-change: transform, opacity;
}

.venues-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.venues-img:hover {
    transform: scale(1.025);
}

.venues-content {
    display: flex;
    flex-direction: column;
}

.venues-header-block {
    margin-bottom: 30px;
}

.venues-tag {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.venues-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700; /* Clean, bold, minimalist weight */
    color: #122525;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.venues-subtitle {
    font-size: 1.05rem;
    color: #3b4d4d;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.venues-divider {
    width: 60px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    width: 100%;
}

.venue-card {
    background: rgba(255, 255, 255, 0.14); /* Softer background glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Thinner and softer glass border */
    border-radius: 30px; /* Pill-shaped corners for a soft, modern, high-end feel */
    padding: 14px 24px;  /* Sleeker padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #122222;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Luxury cubic-bezier transition that adds a tiny, high-end spring-bounce effect when rising */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.6s ease;
    will-change: transform, opacity;
}

.venue-card:hover {
    transform: translateY(-14px) scale(1.05) rotate(0.5deg); /* Pops up higher, scales, and rotates subtly */
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.95);
    /* Extended shadow glow so the card feels like it is floating high above the page */
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.35), 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Responsive Overrides for Venues Page */
@media (max-width: 991px) {
    .venues-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
        justify-items: center;
    }
    
    .venues-image-wrapper {
        max-width: 300px; /* Small and elegant image on mobile */
    }
    
    .venues-content {
        align-items: center;
        width: 100%;
    }
    
    .venues-divider {
        margin: 0 auto;
    }
    
    .venues-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .venue-card {
        padding: 12px 16px;
        font-size: 0.88rem;
        justify-content: center;
    }
}

/* ==========================================
   PAGE 5 STYLING - LIVE GIGS SHOWCASE
   ========================================== */
.page-five-section {
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #b5cebf 0%, #9cbda8 100%); /* Slightly darker sage green than page 4 */
}

.gigs-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.gigs-header {
    text-align: center;
    margin-bottom: 24px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.page-five-section.gigs-active .gigs-header {
    transform: translateY(0);
    opacity: 1;
}

.gigs-cyber-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(27, 38, 32, 0.65);
    display: block;
    margin-bottom: 8px;
}

.gigs-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700; /* Clean, bold, minimalist weight */
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #1b2620 0%, #2e3e34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gigs-subtitle {
    font-size: 0.95rem;
    color: rgba(27, 38, 32, 0.75);
    font-family: var(--font-body);
    margin-bottom: 16px;
}

.gigs-divider {
    width: 80px;
    height: 3px;
    background: rgba(27, 38, 32, 0.25);
    margin: 0 auto;
    border-radius: 2px;
}

.gigs-gallery-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15); /* Frosted light glass tint */
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 24px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.gigs-scroll-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 16px 0;
    width: 100%;
    scrollbar-width: none; /* Hide default scrollbar on Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.gigs-scroll-track::-webkit-scrollbar {
    display: none; /* Hide default scrollbar on Chrome, Safari and Opera */
}

.gig-card {
    flex: 0 0 auto;
    height: 50vh;
    width: auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-five-section.gigs-active .gig-card {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger display offsets */
.page-five-section.gigs-active .gig-card:nth-child(even) {
    transition-delay: 0.05s;
}
.page-five-section.gigs-active .gig-card:nth-child(odd) {
    transition-delay: 0.15s;
}

.gig-img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gig-card:hover .gig-img {
    transform: scale(1.03);
}

.gig-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gig-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 14, 18, 0.7) 0%, rgba(13, 14, 18, 0) 50%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gig-card:hover .gig-card-overlay {
    opacity: 1;
}

.gig-card-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gigs-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gigs-nav-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.gigs-prev-btn {
    left: 15px;
}

.gigs-next-btn {
    right: 15px;
}

.gigs-scroll-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(27, 38, 32, 0.12);
    margin: 24px auto 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.gigs-scroll-bar-progress {
    width: 0%;
    height: 100%;
    background: #ff4500;
    transition: width 0.1s ease;
}

/* Fullscreen Lightbox Overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.15s ease;
}

.lightbox-caption {
    margin-top: 24px;
    text-align: center;
    max-width: 600px;
}

.lightbox-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    margin-bottom: 6px;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

/* Mobile responsive details */
@media (max-width: 768px) {
    .page-five-section {
        padding: 80px 16px 60px 16px;
    }
    .gigs-title {
        font-size: 2.2rem;
    }
    .gig-card {
        height: 45vh;
    }
    .gigs-gallery-wrapper {
        padding: 16px 15px;
        border-radius: 16px;
    }
    .gigs-nav-btn {
        display: flex !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 0.7rem !important;
        background: rgba(0, 0, 0, 0.45) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        color: rgba(255, 255, 255, 0.85) !important;
        opacity: 0.75 !important;
    }
    .gigs-prev-btn {
        left: 8px !important;
    }
    .gigs-next-btn {
        right: 8px !important;
    }
    .gig-card-overlay {
        opacity: 1; /* Always show numbers on mobile viewports */
    }
    .lightbox-nav {
        display: none; /* Hide navigation buttons on mobile viewport */
    }
    .lightbox-content {
        max-width: 95%;
    }
}

/* ==========================================
   WELCOME SCREEN STYLING
   ========================================== */
body.no-scroll {
    overflow: hidden !important;
}

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh; /* dynamic viewport height to cover mobile browser bar quirks */
    background-color: #161618; /* Concrete Slate Gray */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Overlays the header and navigation completely */
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.welcome-screen.fade-out {
    transform: translateY(-100dvh);
    opacity: 0;
    pointer-events: none;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Push the button lower down */
    width: 90%;
    max-width: 600px;
}

.welcome-logo-svg {
    width: clamp(15rem, 50vw, 35rem);
    height: auto;
    display: block;
    stroke: url(#welcome-fill-gradient) !important;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.18));
    animation: welcomeLogoGlow 3s ease-in-out infinite alternate;
    transform-origin: center center; /* Critical for inertia rotation and wobble centering */
}

@keyframes welcomeLogoGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.12));
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.28));
    }
}

.welcome-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Thinner and much dimmer border for a delicate outline */
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.welcome-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.welcome-btn:active {
    transform: scale(0.92) translateY(0);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

.welcome-btn i {
    transition: transform 0.3s ease;
}

.welcome-btn:hover i {
    transform: scale(1.1);
}

/* SVG Path Safari Render Bug Fix */
.C1 {
    stroke: inherit !important;
    fill: none !important;
}

/* ==========================================
   GLASSMORPHIC TRANSLUCENT GRAY PLAYLIST OVERRIDES
   ========================================== */

/* 1. Controller Console Deck */
.player-bottom-console {
    background: rgba(20, 20, 20, 0.45) !important; /* Premium dark translucent gray */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(35px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(35px) saturate(180%) !important;
}

/* 2. Symmetrical Flanking Buttons */
.flanking-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: none !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.flanking-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px) !important;
}

.flanking-btn:active, .flanking-btn.active {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: translateY(0) !important;
}

/* 3. Larger Play/Pause Accent Button */
.play-pause-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}

.play-pause-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.04) translateY(-1px) !important;
}

.play-pause-btn:active {
    transform: scale(0.98) translateY(0) !important;
    background: rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
}

/* 4. Mini Cover Frame */
.player-mini-cover {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

/* 5. Inset Progress Slider Bar */
.progress-container {
    height: 6px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.progress-bar {
    background: #ffffff !important;
    border-radius: 3px !important;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5) !important;
}

/* 6. Inset Volume Slider */
.volume-slider {
    height: 6px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 3px !important;
    position: relative !important;
    cursor: pointer !important;
    box-shadow: none !important;
    touch-action: none !important; /* Prevents scrolling while dragging the slider */
}

.volume-progress {
    background: #ffffff !important;
    border-radius: 3px !important;
}

/* 7. Typography Styles (Perfect Contrast Light Text) */
.track-title {
    color: #ffffff !important;
}

.track-artist {
    color: rgba(255, 255, 255, 0.6) !important;
}

.time-display {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* 8. Compact Playlist Drawer Styles */
.player-playlist-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.player-playlist-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
}

.player-playlist-row::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.compact-track-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.compact-track-item.active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.compact-track-index {
    color: rgba(255, 255, 255, 0.4) !important;
}

.compact-track-item.active .compact-track-index {
    color: #ffffff !important;
}

.compact-track-title {
    color: rgba(255, 255, 255, 0.8) !important;
}

.compact-track-item.active .compact-track-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: #ffffff !important;
}

.compact-track-artist {
    color: rgba(255, 255, 255, 0.55) !important;
}

.compact-track-duration {
    color: rgba(255, 255, 255, 0.4) !important;
}

.compact-track-item.active .compact-track-duration {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 9. Carousel Card Shadows */
.carousel-card {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* ==========================================
   NEUMORPHISM CLICK WHEEL LAYOUT STYLING
   ========================================== */

/* 1. Restructure the console layout to vertical */
.player-bottom-console {
    width: 92% !important; /* expand slightly for good spacing on mobile */
    max-width: 440px !important; /* restrict maximum width for neat vertical layout */
    padding: 20px 16px !important; /* reduced side padding to prevent squishing on small screens */
    align-self: center !important;
    gap: 16px !important;
    flex-direction: column !important;
    height: auto !important;
}

/* 2. Row 1: Track Metadata and Slider */
.player-track-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-track-row .track-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.player-track-row .track-title-artist {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    width: 100%;
}

/* 3. Row 2: Wheel Symmetrical Layout */
.player-wheel-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px; /* optimized gap for small screens */
    margin: 10px 0;
}

/* 4. Flanking Buttons (Repeat and Drawer Toggle) */
.flanking-btn {
    width: 42px !important;
    height: 42px !important;
    aspect-ratio: 1 / 1 !important; /* force 1:1 circle aspect ratio */
    flex-shrink: 0 !important; /* prevent flexbox from deforming the circle */
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

.flanking-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.flanking-btn:active, .flanking-btn.active {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

/* 5. Click Wheel Controller */
.click-wheel {
    position: relative;
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1 !important; /* force 1:1 circle aspect ratio */
    flex-shrink: 0 !important; /* prevent flexbox from deforming the circle */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 1px 1px 0px rgba(255, 255, 255, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.15) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.wheel-center-btn {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important; /* Soft gray matching other click wheel buttons */
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.wheel-center-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.22) !important;
    transform: scale(1.05) !important;
}

.wheel-center-btn:active {
    background: rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
}

.center-btn-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* Wheel Directional Button styles */
.wheel-btn {
    position: absolute !important;
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.05rem !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 40px !important;
    height: 40px !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important; /* Remove normal button shadows */
    z-index: 5 !important;
    border-radius: 50% !important;
}

.wheel-btn:hover {
    color: #ffffff !important;
}

.wheel-btn:active, .wheel-btn.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.wheel-top {
    top: 6px !important;
    left: calc(50% - 20px) !important;
}

.wheel-right {
    right: 6px !important;
    top: calc(50% - 20px) !important;
}

.wheel-bottom {
    bottom: 6px !important;
    left: calc(50% - 20px) !important;
}

.wheel-left {
    left: 6px !important;
    top: calc(50% - 20px) !important;
}

/* 6. Row 3: Volume Slider Row */
.player-volume-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.volume-btn-minimal {
    background: none !important;
    border: none !important;
    color: var(--neumorph-text-muted) !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

.player-volume-row .volume-slider {
    width: 120px !important; /* fixed centered width */
    flex-shrink: 0 !important;
}

/* Hide unused old control rows */
.player-controls-row, .player-right-controls {
    display: none !important;
}

/* 7. Playlist Drawer Smooth Collapse/Expand Transitions */
.player-playlist-row {
    width: 100% !important;
    max-height: 180px !important;
    opacity: 1 !important;
    overflow-y: auto !important;
    padding-top: 14px !important;
    margin-top: 6px !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, margin 0.4s, padding 0.4s !important;
}

.player-playlist-row.collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    pointer-events: none !important;
}

/* 8. Favorite/Heart Button Active Colors */
#likeBtn {
    transition: all 0.2s ease !important;
}

#likeBtn:active, #likeBtn.active {
    background: rgba(0, 0, 0, 0.02) !important;
}

#likeBtn.active i {
    color: #ff3b30 !important; /* premium Apple Red */
    filter: drop-shadow(0 0 4px rgba(255, 59, 48, 0.35));
}

/* ==========================================
   LANDSCAPE & SHORT-SCREEN RESPONSIVE LAYOUT
   ========================================== */
@media (max-height: 720px) {
    /* Scale down the 3D carousel to prevent overlap with console */
    .carousel-container {
        transform: scale(0.68) !important;
        transform-origin: center center !important;
        margin: -5vh 0 !important;
        height: 38vh !important;
    }
    
    /* Adapt console height and layout padding */
    .player-bottom-console {
        max-width: 360px !important;
        padding: 12px 14px !important;
        gap: 8px !important;
    }
    
    /* Slightly smaller typography */
    .player-track-row {
        gap: 10px !important;
    }
    
    .player-mini-cover {
        width: 36px !important;
        height: 36px !important;
    }
    
    .track-title {
        font-size: 0.8rem !important;
    }
    
    .track-artist {
        font-size: 0.7rem !important;
    }
    
    .time-display {
        font-size: 0.65rem !important;
        width: 60px !important;
    }
    
    /* Scale down Click Wheel for short screens */
    .click-wheel {
        width: 120px !important;
        height: 120px !important;
        box-shadow: 
            inset 1px 1px 0px rgba(255, 255, 255, 0.15),
            0 8px 24px rgba(0, 0, 0, 0.15) !important;
    }
    
    .wheel-center-btn {
        width: 38px !important;
        height: 38px !important;
    }
    
    .wheel-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
    
    .wheel-top { top: 4px !important; left: calc(50% - 14px) !important; }
    .wheel-right { right: 4px !important; top: calc(50% - 14px) !important; }
    .wheel-bottom { bottom: 4px !important; left: calc(50% - 14px) !important; }
    .wheel-left { left: 4px !important; top: calc(50% - 14px) !important; }
    
    .flanking-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    .player-volume-row {
        margin-top: 2px !important;
        gap: 8px !important;
    }
    
    .player-volume-row .volume-slider {
        width: 90px !important;
        flex-shrink: 0 !important;
    }
}

/* ==========================================
   LOWT & FRIEND VIDEO SECTION (Page 6)
   ========================================== */
.friends-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(to bottom, #9cbda8 0%, #35423d 100%); /* Softened slate-charcoal transition */
}

.friends-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.friends-header-block {
    text-align: center;
    margin-bottom: 50px;
}

.friends-subtitle {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    opacity: 0.8;
}

.friends-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.friends-divider {
    width: 60px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    margin: 0 auto;
}

/* Video Grid layout */
.friends-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

@media (max-width: 991px) {
    .friends-video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Premium video card style with soft glassmorphic backdrop */
.friend-video-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.0s ease, border-color 0.4s ease, box-shadow 0.6s ease;
    will-change: transform, opacity;
}

.friends-section.friends-active .friend-video-card {
    opacity: 1;
    transform: translateY(0);
}

.friends-section.friends-active .friend-video-card:nth-child(2) {
    transition-delay: 0.2s;
}

.friend-video-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Responsive aspect ratio container for iframe */
.video-iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px 24px;
}

.video-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.video-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   BOOKING FORM SECTION (Page 7)
   ========================================== */
.booking-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(to bottom, #35423d 0%, #212826 100%); /* Softened slate-charcoal transition */
}

.booking-container {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    align-items: center;
}

.booking-header-block {
    text-align: center;
    margin-bottom: 45px;
}

.booking-subtitle {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    opacity: 0.8;
}

.booking-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.booking-divider {
    width: 60px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    margin: 0 auto;
}

/* Glassmorphic Form Card */
.booking-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 45px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
    will-change: transform, opacity;
}

.booking-section.booking-active .booking-card {
    opacity: 1;
    transform: translateY(0);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .booking-card {
        padding: 30px 24px;
        border-radius: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.booking-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.booking-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.booking-textarea {
    resize: none;
}

/* Custom Date input calendar icon color */
.booking-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Error Messages Styles */
.form-group.has-error .booking-input {
    border-color: rgba(255, 100, 100, 0.6) !important;
    background: rgba(255, 100, 100, 0.04);
}

.error-msg {
    position: absolute;
    bottom: -18px;
    left: 4px;
    font-size: 0.75rem;
    color: rgba(255, 120, 120, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.form-group.has-error .error-msg {
    opacity: 1;
}

/* Form Submit Button */
.btn-booking-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: #ffffff;
    color: #0c1210;
}

.btn-booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* Success Modal Overlay */
.booking-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(10, 15, 13, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.booking-success-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.booking-success-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.85);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-success-modal.show .booking-success-card {
    transform: scale(1);
}

.success-icon-wrapper {
    font-size: 4rem;
    color: #9cbda8;
    margin-bottom: 24px;
}

.success-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.success-modal-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 30px 0;
}

.close-success-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 0.9rem;
    border-radius: 12px;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.close-success-btn:hover {
    background: #ffffff;
    color: #0c1210;
}

/* ==========================================
   ELABORATE TECH FOOTER SECTION
   ========================================== */
.site-footer {
    width: 100%;
    background: #1b211f; /* Slightly darker than booking end for solid grounding */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 50px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Background grid glow overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
    position: relative;
}

/* HUD Tech Decor */
.footer-hud-decor {
    position: absolute;
    top: -20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-hud-decor.left {
    left: 10px;
}

.footer-hud-decor.right {
    right: 10px;
}

@media (max-width: 768px) {
    .footer-hud-decor {
        display: none; /* Hide on mobile to prevent clutter */
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-highlight {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Futuristic Logo Underline */
.logo-underline {
    position: relative;
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
    border-radius: 1px;
}

.logo-underline::before, .logo-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.logo-underline::before {
    left: 0;
}

.logo-underline::after {
    right: 0;
}

/* Premium Email Link styling */
.footer-email {
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.footer-email i {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.footer-email:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.footer-email:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Symmetrical glowing brand-focused social buttons */
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.footer-socials .social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px; /* Square rounded corners look much more high-tech */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual glowing brand color mappings on hover */
.footer-socials .social-icon-btn.instagram:hover {
    background: #ffffff;
    color: #1b211f;
    border-color: #ffffff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.footer-socials .social-icon-btn.facebook:hover {
    background: #ffffff;
    color: #1b211f;
    border-color: #ffffff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.footer-socials .social-icon-btn.soundcloud:hover {
    background: #ffffff;
    color: #1b211f;
    border-color: #ffffff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.footer-socials .social-icon-btn.youtube:hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.footer-credits {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
    padding-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.credits-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.footer-logo {
    height: 14px;
    width: auto;
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
    vertical-align: middle;
}

.footer-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ==========================================
   BOOKING SUBMIT BUTTON GLOW OVERRIDES
   ========================================== */
.btn-booking-submit {
    background: #ff4500 !important;
    border-color: #ff4500 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-booking-submit:hover {
    background: #ff9e79 !important; /* Even lighter peach orange */
    border-color: #ff9e79 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 22px rgba(255, 69, 0, 0.5) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================
   LANGUAGE SWITCHER WIDGET
   ========================================== */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(18, 20, 28, 0.06); /* Darker glass background for contrast on light header */
    border: 1px solid rgba(18, 20, 28, 0.12); /* Legible dark glass border */
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-right: 12px;
    height: 38px;
    box-sizing: border-box;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(18, 20, 28, 0.45); /* Dark grey text color for inactive state */
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0 4px;
    outline: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.lang-btn:hover {
    color: rgba(18, 20, 28, 0.8);
}

.lang-btn.active {
    color: #12141c; /* Solid dark text matching nav link active state */
    font-weight: 900; /* Extra bold active state */
}

.lang-divider {
    color: rgba(18, 20, 28, 0.2);
    font-size: 0.8rem;
    pointer-events: none;
}

/* Mobile Language Switcher (inside drawer) */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(18, 20, 28, 0.06);
    border: 1px solid rgba(18, 20, 28, 0.12);
    padding: 8px 16px;
    border-radius: 24px;
    width: fit-content;
    margin: 0 auto 30px auto;
}

.mobile-lang-switcher .lang-btn {
    font-size: 0.9rem;
    padding: 0 8px;
    color: rgba(18, 20, 28, 0.45);
}

.mobile-lang-switcher .lang-btn.active {
    color: #12141c;
    font-weight: 900;
}

.mobile-lang-switcher .lang-divider {
    font-size: 0.9rem;
    color: rgba(18, 20, 28, 0.25);
}

/* ==========================================
   CUSTOM CURSOR FOLLOWER
   ========================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(138, 138, 143, 0.85); /* Premium neutral grey border */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Crucial: do not block clicks */
    z-index: 99999; /* Stay on top of everything */
    will-change: transform, width, height, border-color, background-color;
    box-shadow: 0 0 8px rgba(138, 138, 143, 0.3); /* Soft grey glow */
    opacity: 0; /* Starts hidden, shown on mousemove */
    transition: 
        width 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover state: expands and glows brighter when hovering clickable elements */
.custom-cursor.hovered {
    width: 40px;
    height: 40px;
    background-color: rgba(138, 138, 143, 0.12); /* Light grey fill */
    border-color: rgba(138, 138, 143, 0.95);
    box-shadow: 0 0 16px rgba(138, 138, 143, 0.55);
}

/* Hide on touchscreen or mobile devices */
@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

/* ==========================================
   MEDIA ASSETS / PRESSKIT BUTTONS (MINIMALIST READABLE FONT)
   ========================================== */
.btn-presskit {
    font-family: var(--font-body) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    padding: 10px 22px !important;
    height: 48px !important;
    border-radius: 24px !important;
    gap: 8px !important;
}

.btn-presskit i {
    font-size: 0.95rem;
}

/* Footer specific presskit button adjustments */
.footer-presskit {
    margin: 15px 0 10px 0;
    display: flex;
    justify-content: center;
}

.btn-presskit-footer {
    font-size: 0.78rem !important;
    padding: 8px 18px !important;
    height: 40px !important;
    border-radius: 20px !important;
}

.btn-presskit-footer i {
    font-size: 0.85rem;
}








