:root {
    /* Brand Colors */
    --bg-dark: #0A0A0C;
    --bg-surface: #121215;
    --bg-surface-elevated: #1C1C21;
    --neon-cyan: #00E5FF;
    --neon-purple: #D500F9;
    --neon-magenta: #FF007F;
    --text-primary: #FFFFFF;
    --text-muted: #A0A0A5;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.5);
    --glow-purple: 0 0 20px rgba(213, 0, 249, 0.5);
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .brand {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }

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

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}
.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
}
.text-center.section-heading::after {
    left: 25%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #fff;
    box-shadow: var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 0, 249, 0.7);
    filter: brightness(1.2);
}

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

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.text-glow {
    text-shadow: var(--glow-cyan);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}
.brand span {
    color: var(--neon-cyan);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
}

.nav-links li a ion-icon {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.nav-links li a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.dropdown:hover > a ion-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(18, 18, 21, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-cyan);
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) contrast(1.2);
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1.0) translateY(0); }
    100% { transform: scale(1.1) translateY(-2%); }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.4) 100%);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(213, 0, 249, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    padding: 0 1rem;
}


/* Center Hero Text on Main Page specifically */
.hero-section .hero-content {
    text-align: center;
}

.hero-section .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Video Mode */
.hero-section.hero-video-mode {
    min-height: 100vh;
    height: auto;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1.5rem 40px;
}

.hero-container {
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: #000;
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 50px rgba(213, 0, 249, 0.35);
    border-color: rgba(213, 0, 249, 0.2);
}

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

.trust-signals {
    display: flex;
    gap: 2rem;
}

.signal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.signal ion-icon {
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

/* Vibe Selector */
.vibe-selector-section {
    background: var(--bg-surface);
}

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

.vibe-card {
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vibe-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, transparent, transparent);
    transition: var(--transition-smooth);
}

.vibe-card:hover, .vibe-card.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(0, 229, 255, 0.3);
}

.vibe-card.active::before {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: var(--glow-cyan);
}

.vibe-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.vibe-card h3 {
    margin-bottom: 0.5rem;
}

.vibe-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Shop / Customizer */
.shop-section {
    background: var(--bg-dark);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    color: var(--neon-magenta);
    margin-bottom: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.feature-divider {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-preview {
    position: sticky;
    top: 100px;
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #000;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#customizer-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity var(--transition-smooth);
}

.preview-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--neon-cyan);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    transition: background var(--transition-smooth);
}

.price-display {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.price-display h2 {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.customizer-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.customizer-step {
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.customizer-step.active {
    border-color: rgba(213, 0, 249, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-num {
    background: rgba(255,255,255,0.05);
    color: var(--neon-purple);
    font-family: var(--font-heading);
    font-weight: 900;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.option-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.opt-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-fast);
}

.opt-btn:hover {
    background: rgba(255,255,255,0.1);
}

.opt-btn.active {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.fabric-group .opt-btn.active {
    background: rgba(213, 0, 249, 0.1);
    border-color: var(--neon-purple);
    color: #fff;
}

.grid-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.opt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.opt-card:hover {
    background: rgba(255,255,255,0.08);
}

.opt-card.active {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--neon-cyan);
}

.opt-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.opt-card.active .card-icon {
    color: var(--neon-cyan);
}

.opt-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.opt-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.checkout-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1.2rem;
}

/* Learn Section */
.learn-section {
    background: var(--bg-surface);
}

.split-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.infobox {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mental-health {
    background: linear-gradient(135deg, rgba(213, 0, 249, 0.1), rgba(0, 229, 255, 0.1)), var(--bg-surface-elevated);
}

.hostel-pack {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), var(--bg-surface-elevated));
    background-size: cover;
    background-position: center;
}

.infobox .bg-overlay {
    background: linear-gradient(to top, rgba(10,10,12,1) 0%, rgba(10,10,12,0) 100%);
    z-index: 1;
}

.infobox-content {
    position: relative;
    z-index: 2;
}

.infobox h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.infobox p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

/* Performances Page */
.performances-section {
    padding-top: 100px;
}

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

.performance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.performance-card:hover {
    transform: translateY(-8px);
}

.performance-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.performance-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.performance-card:hover .performance-img-container img {
    transform: scale(1.1);
}

.performance-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 1px;
}

.performance-btn {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0.7rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.performance-btn:hover {
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Performance Detail Pages */
.detail-header {
    padding: 12rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(13, 13, 16, 0.5), var(--bg-dark));
}

.detail-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: 2px;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
    text-align: center;
}

.detail-credit {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 2px;
}

.detail-copy {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.detail-copy p {
    margin-bottom: 2rem;
}

.performance-gallery {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

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

@media (max-width: 768px) {
    .detail-title { font-size: 2.5rem; }
    .detail-copy { font-size: 1.1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}

.flow-link-section {
    background: var(--bg-dark);
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    padding-top: 4rem;
}

.footer-links ul {
    list-style: none;
    margin-top: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .shop-grid, .split-boxes, .length-options-grid {
        grid-template-columns: 1fr;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 5rem 3rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 1rem 0;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    /* Add "Book a Show" to mobile menu if hidden in nav-actions */
    .nav-links::after {
        content: '';
        display: block;
        margin-top: 2rem;
    }

    /* Performances Grid Mobile */
    .performances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .performance-title {
        font-size: 1rem;
    }

    .performance-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Footer Responsive Styling */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-brand, .footer-links {
        width: 100%;
    }

    /* Mobile Menu Toggle Style */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        font-size: 2rem;
    }

    /* Section Spacing & Headings */
    .section-container {
        padding: 3rem 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .infobox {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }

    .infobox h3 {
        font-size: 1.6rem;
    }

    /* Builder Section Title Mobile */
    .builder-section-title {
        font-size: 2rem;
    }

    .builder-hero .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .performances-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .builder-hero .hero-title {
        font-size: 2.8rem;
    }

    .builder-intro {
        padding: 2rem 1rem;
    }

    .builder-section-title {
        font-size: 1.5rem;
    }

    .knob-options-grid, .length-options-grid {
        grid-template-columns: 1fr;
    }

    .preview-panel {
        margin-bottom: 1rem;
    }

    .poi-visual-container {
        padding: 0.5rem;
    }
}


/* Modular Builder Page */
.builder-body {
    background: #000;
}

.builder-main {
    min-height: 100vh;
}

.builder-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 4rem;
}

/* Left Panel: Preview */
.preview-panel {
    flex: 0 0 40%;
}

.preview-sticky {
    position: sticky;
    top: 100px;
}

.poi-visual-container {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    padding: 1rem;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poi-image-stack {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.poi-image-stack img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.poi-image-stack img:first-child {
    position: relative;
}

/* Right Panel: Controls */
.controls-panel {
    flex: 1;
    padding-bottom: 5rem;
}

.config-section {
    margin-bottom: 4rem;
}

.config-step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-magenta);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sub-step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards & Grid Options */
.knob-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.filling-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.config-card {
    background: var(--bg-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.filling-card {
    background: var(--bg-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.config-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.config-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.2s;
}

.config-card.active, .filling-card.active {
    border-color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.config-card.active .card-check {
    opacity: 1;
}

/* Filling Cards Specific */
.filling-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.filling-card span {
    font-size: 0.75rem;
    line-height: 1.3;
}

.filling-icon {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.filling-card.active .filling-icon {
    color: var(--neon-cyan);
}

/* Length Cards Specific */
.length-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.length-card {
    background: var(--bg-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.length-card.active {
    border-color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.length-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.length-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.length-card .card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.2s;
}

.length-card.active .card-check {
    opacity: 1;
}

.custom-input {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-surface-elevated);
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    text-align: center;
}

.custom-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

/* Color Swatches */
.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.color-swatch {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    box-shadow: 0 0 0 3px var(--neon-cyan);
}

.color-swatch span {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.color-swatch.glow span {
    color: rgba(0, 100, 0, 0.7);
}


/* Builder Hero Section */
.builder-hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/hero_motion_blur.png');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-cta-btn {
    background: #FF0055;
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.4);
}

.hero-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 0, 85, 0.6);
}

.hero-cta-btn ion-icon {
    font-size: 2.8rem;
    color: black;
}

.hero-cta-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: black;
    text-align: left;
}

.hero-cta-btn .btn-top {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.hero-cta-btn .btn-bottom {
    font-size: 0.9rem;
    font-weight: 700;
}


/* Override hero subtitle for builder to ensure centering */
.builder-hero .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Builder Section Header */
.builder-intro {
    background: #000;
    padding: 4rem 2rem;
    text-align: center;
}

.builder-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.builder-section-title span {
    color: #FF0055;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .builder-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .preview-panel {
        flex: none;
        width: 100%;
        margin-bottom: 2rem;
    }

    .preview-sticky {
        position: static;
    }
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-surface);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.review-card {
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer-info {
    margin-top: auto;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reviewer-title {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

