* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--font-sans);
}

::-webkit-scrollbar {
    width: 8px;
    background: #02040a;
}

::-webkit-scrollbar-track {
    background: #02040a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            #00f3ff,
            #bc13fe,
            #f472b6,
            #00f3ff);
    background-size: 100% 400%;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
    animation: rgbScroll 4s linear infinite;
}

@keyframes rgbScroll {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

:root {

    --bg: #0a0e18;
    --bg-alt: #0d121f;
    --text: #e5e7eb;
    --muted: #cbd5e1;
    --muted-text-color: #cbd5e1;
    --cyan: #22d3ee;

    --main-color: #22d3ee;
    --card-bg: rgba(17, 24, 39, 0.7);
    --glass: rgba(255, 255, 255, 0.06);

    --purple: #6366f1;

    --pink: #ec4899;
    --red: #ef4444;
    --green: #10b981;
    --orange: #f59e0b;
    --teal: #14b8a6;
    --yellow: #f59e0b;

    --font-sans: "Poppins", "Inter", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", monospace;
    --font-space: "Space Grotesk", sans-serif;

    --glass-bg: rgba(17, 24, 39, 0.8);
    --glass-border: rgba(255, 255, 255, 0.04);
    --glass-blur: 24px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    --mouse-x: 0px;
    --mouse-y: 0px;
}

.hidden {
    display: none !important;
}


.cinematic-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinematic-intro.warping .intro-content {
    animation: warpSpeed 0.8s ease-in forwards;
}

@keyframes warpSpeed {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(20);
        opacity: 0;
        filter: blur(20px);
    }
}

.intro-bg {
    position: absolute;
    inset: 0;
}



@keyframes auroraFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(3%, -3%) scale(1.05);
    }
}

.intro-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.intro-tag {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--cyan);
    margin-bottom: 3rem;


}

.intro-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.intro-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: wordReveal 0.8s ease forwards;
}

.intro-title .word:nth-child(1) {
    animation-delay: 0.4s;
}

.intro-title .word:nth-child(2) {
    animation-delay: 0.6s;
}

.intro-title .word:nth-child(3) {
    animation-delay: 0.8s;
}

.intro-title .accent {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.intro-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: lineExpand 1s ease forwards 1s;
}

@keyframes lineExpand {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.intro-desc {
    font-size: 1.8rem;
    color: var(--muted);
    margin-bottom: 4rem;
    opacity: 0;
    animation: slideUp 1s ease forwards 1.2s;
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 4rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border: none;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg);
    cursor: pointer;
    opacity: 0;
    animation: slideUp 1s ease forwards 1.4s;
    transition: transform 0.3s, box-shadow 0.3s;
}

.enter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px -10px rgba(34, 211, 238, 0.5);
}

.btn-icon {
    display: flex;
}


.main-content {
    opacity: 0;
    transition: opacity 1s ease;
    overflow-x: hidden;
}

.main-content.visible {
    opacity: 1;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 80px;
}

.header.hidden-on-detail {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.logo {
    font-size: 2.4rem;
    color: var(--text);
    font-weight: 800;
}

.logo span {
    color: var(--cyan);
}

.navbar a {
    font-size: 1.5rem;
    color: var(--text);
    margin-left: 3rem;
    opacity: 0.8;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--cyan);
    opacity: 1;
}

#menu-icon {
    font-size: 3rem;
    color: var(--cyan);
    display: none;
    cursor: pointer;
}


.scene-container {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    cursor: grab;
    z-index: 1;
    background: #0a0e18 !important;
}

.scene-container:active {
    cursor: grabbing;
}

.scene-container.fade-out {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}


.bg-neon-text,
.bg-neon-subtext,
.info-bg-group {
    display: none;
}

@keyframes neonPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}



.scene-3d {
    position: absolute;
    top: 50%;
    left: 48%;

    transform: translate(-50%, -50%) rotateX(20deg) rotateY(-14deg);
    width: 95vw;
    height: 600px;
    transform-style: preserve-3d;
    z-index: 10;
    transition: transform 0.05s linear;
}

.aurora-gradient {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.ground {
    position: absolute;
    width: 2000px;
    height: 2000px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(90deg) translateZ(-300px);
    transform-style: preserve-3d;
}

.grid-floor {
    display: none;
}

.cube-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}


.cube {
    position: absolute;
    width: 110px;
    height: 110px;
    transform-style: preserve-3d;
    cursor: pointer;
    animation: cubeFloat 7s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes cubeFloat {

    0%,
    100% {
        transform: translateY(0) translateZ(var(--z-pos, 0));
    }

    50% {
        transform: translateY(-10px) translateZ(var(--z-pos, 0));
    }
}







.cube-1 {
    left: 10%;
    top: 5%;
    --z-pos: 20px;
    animation-delay: 0s;
    transform: translateX(-50%);
}

.cube-2 {
    left: 23.3%;
    top: 5%;
    --z-pos: 10px;
    animation-delay: -1s;
    transform: translateX(-50%);
}

.cube-3 {
    left: 36.6%;
    top: 5%;
    --z-pos: 25px;
    animation-delay: -2s;
    transform: translateX(-50%);
}

.cube-4 {
    left: 50%;
    top: 5%;
    --z-pos: 15px;
    animation-delay: -3s;
    transform: translateX(-50%);
}

.cube-5 {
    left: 63.3%;
    top: 5%;
    --z-pos: 20px;
    animation-delay: -4s;
    transform: translateX(-50%);
}

.cube-6 {
    left: 76.6%;
    top: 5%;
    --z-pos: 10px;
    animation-delay: -5s;
    transform: translateX(-50%);
}

.cube-7 {
    left: 90%;
    top: 5%;
    --z-pos: 25px;
    animation-delay: -6s;
    transform: translateX(-50%);
}


.cube-8 {
    left: 10%;
    top: 42%;
    --z-pos: 15px;
    animation-delay: -0.5s;
    transform: translateX(-50%);
}

.cube-9 {
    left: 23.3%;
    top: 42%;
    --z-pos: 25px;
    animation-delay: -1.5s;
    transform: translateX(-50%);
}

.cube-10 {
    left: 36.6%;
    top: 42%;
    --z-pos: 10px;
    animation-delay: -2.5s;
    transform: translateX(-50%);
}

.cube-11 {
    left: 50%;
    top: 42%;
    --z-pos: 20px;
    animation-delay: -3.5s;
    transform: translateX(-50%);
}

.cube-12 {
    left: 63.3%;
    top: 42%;
    --z-pos: 15px;
    animation-delay: -4.5s;
    transform: translateX(-50%);
}

.cube-13 {
    left: 76.6%;
    top: 42%;
    --z-pos: 25px;
    animation-delay: -5.5s;
    transform: translateX(-50%);
}

.cube-14 {
    left: 90%;
    top: 42%;
    --z-pos: 10px;
    animation-delay: -6.5s;
    transform: translateX(-50%);
}


.cube-15 {
    left: 10%;
    top: 79%;
    --z-pos: 25px;
    animation-delay: -1s;
    transform: translateX(-50%);
}

.cube-16 {
    left: 23.3%;
    top: 79%;
    --z-pos: 15px;
    animation-delay: -2s;
    transform: translateX(-50%);
}

.cube-17 {
    left: 36.6%;
    top: 79%;
    --z-pos: 20px;
    animation-delay: -3s;
    transform: translateX(-50%);
}

.cube-18 {
    left: 50%;
    top: 79%;
    --z-pos: 10px;
    animation-delay: -4s;
    transform: translateX(-50%);
}

.cube-19 {
    left: 63.3%;
    top: 79%;
    --z-pos: 25px;
    animation-delay: -5s;
    transform: translateX(-50%);
}

.cube-20 {
    left: 76.6%;
    top: 79%;
    --z-pos: 15px;
    animation-delay: -6s;
    transform: translateX(-50%);
}

.cube-21 {
    left: 90%;
    top: 79%;
    --z-pos: 20px;
    animation-delay: -0.5s;
    transform: translateX(-50%);
}


.cube-face {
    position: absolute;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
}

.cube-face.front {
    transform: translateZ(55px);
    background: var(--glass-bg);
    backdrop-filter: saturate(var(--glass-saturate)) blur(var(--glass-blur));
    -webkit-backdrop-filter: saturate(var(--glass-saturate)) blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 12px rgba(0, 0, 0, 0.3),
        0 4px 24px -4px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.cube:hover .cube-face.front {
    border-color: rgba(0, 243, 255, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -2px 12px rgba(0, 0, 0, 0.25),
        0 0 32px -4px rgba(0, 243, 255, 0.2),
        0 0 0 1px rgba(188, 19, 254, 0.15);
}

.cube:hover {
    animation-play-state: paused;
    transform: translateY(-20px) translateZ(calc(var(--z-pos, 0) + 40px)) scale(1.02) !important;
    z-index: 1000;
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(55px);
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.95), rgba(10, 15, 30, 1));
    border-radius: 16px;
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(55px);
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.2), rgba(20, 30, 50, 0.95));
    border-left: 1px solid rgba(34, 211, 238, 0.3);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(55px);
    background: linear-gradient(-90deg, rgba(168, 85, 247, 0.2), rgba(20, 30, 50, 0.95));
    border-right: 1px solid rgba(168, 85, 247, 0.3);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(55px);
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.3), rgba(30, 41, 59, 0.9));
    border-radius: 16px;
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(55px);
    background: rgba(5, 10, 20, 0.98);

}

.top-label {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

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

.cube-icon {
    width: 4.4rem;
    height: 4.4rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--deep-purple));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 auto 0.8rem;
    box-shadow: 0 10px 25px -6px rgba(34, 211, 238, 0.5);
}

.cube-icon.cyan {
    background: linear-gradient(135deg, var(--cyan), #0891b2);
    box-shadow: 0 10px 25px -6px rgba(34, 211, 238, 0.5);
}

.cube-icon.red {
    background: linear-gradient(135deg, var(--red), #b91c1c);
    box-shadow: 0 10px 25px -6px rgba(239, 68, 68, 0.5);
}

.cube-icon.purple {
    background: linear-gradient(135deg, var(--purple), #7c3aed);
    box-shadow: 0 10px 25px -6px rgba(168, 85, 247, 0.5);
}

.cube-icon.green {
    background: linear-gradient(135deg, var(--green), #16a34a);
    box-shadow: 0 10px 25px -6px rgba(34, 197, 94, 0.5);
}

.cube-icon.orange {
    background: linear-gradient(135deg, var(--orange), #ea580c);
    box-shadow: 0 10px 25px -6px rgba(249, 115, 22, 0.5);
}


.cube-icon.yellow {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 10px 25px -6px rgba(251, 191, 36, 0.5);
}

.cube-icon.teal {
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
    box-shadow: 0 10px 25px -6px rgba(45, 212, 191, 0.5);
}

.cube-icon.pink {
    background: linear-gradient(135deg, var(--pink), #db2777);
    box-shadow: 0 10px 25px -6px rgba(244, 114, 182, 0.5);
}

.cube h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: 0.02em;
}


.title-overlay {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    pointer-events: none;
}

.title-overlay h1 {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.2em;
}

.title-overlay p {
    font-size: 1.6rem;
    color: var(--muted);
    letter-spacing: 0.5em;
    margin-top: 1rem;
}

.controls-info {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 20;
}

.controls-info span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--muted);
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.controls-info i {
    font-size: 1.6rem;
    color: var(--cyan);
}




.impact-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyan);
    border-radius: 16px;
    transform: translateZ(65px);
    animation: rippleOut 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleOut {
    0% {
        transform: translateZ(65px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateZ(65px) scale(1.5);
        opacity: 0;
    }
}


.detail-page {
    position: fixed;
    inset: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.35s;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0a0e18 !important;
    display: flex;

    flex-direction: column;
}

.detail-page.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.detail-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: #0a0e18;
}

.bg-mesh,
.bg-grid,
.bg-noise {
    display: none;
}


.detail-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--glass-bg);
    backdrop-filter: saturate(var(--glass-saturate)) blur(20px);
    -webkit-backdrop-filter: saturate(var(--glass-saturate)) blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 110;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.back-btn:hover {
    color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.06);
    border-color: rgba(0, 243, 255, 0.25);
    box-shadow: 0 0 20px -4px rgba(0, 243, 255, 0.15);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.badge-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}


.detail-content {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding: 28rem 5% 4rem;

    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 8rem;
    align-items: flex-start;
    flex: 1;
}


.detail-hero {
    position: relative !important;
    top: 130px !important;
    height: auto;
    text-align: left;
    padding: 3.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    border-left: 5px solid var(--main-color);
    box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: none !important;
}

.detail-hero:hover {
    transform: none !important;
}

.hero-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: 16px;
    margin: 0 0 1.25rem;
    transition: transform 0.25s ease;
}

.detail-hero:hover .hero-icon {
    transform: scale(1.02);
}

.detail-hero h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.detail-hero p {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 2.5rem;
    opacity: 1;
}

.hero-desc {
    font-size: 2rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: #ffffff !important;
    line-height: 1. !important;
    margin-top: 2rem !important;
    opacity: 0.9 !important;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(250, 250, 250, 0.06);
    padding-top: 1.25rem;
    margin-top: 1rem;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
}

.meta-tag i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    opacity: 0.9;
}


.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3rem !important;

    width: 100%;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;

    width: 100%;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
    flex: 1;
}

.divider-label {
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-size: 1.4rem;

    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--cyan);
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}


.faq-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--main-color);
    border-radius: 20px;
    padding: 3.5rem !important;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    height: 100%;
}

.faq-card:hover {
    background: rgba(0, 243, 255, 0.08);

    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(0, 243, 255, 0.2);
}

.faq-header-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-num {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    color: var(--main-color);
    background: rgba(34, 211, 238, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
}

.faq-card h4 {
    font-size: 2.15rem !important;

    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.faq-card p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.6rem !important;

    margin: 0;
    opacity: 0.95;
}


.detail-cta {
    display: none !important;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.05), transparent 50%);
    pointer-events: none;
}

.cta-content h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--cyan);
    color: #0f172a;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.cta-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
}


@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

.detail-page.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.bg-grid {
    display: none;
}



.orb-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    top: -250px;
    right: -250px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    bottom: -150px;
    left: -150px;
    animation-delay: -6s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -20px) scale(1.05);
    }

    50% {
        transform: translate(20px, -40px) scale(1.1);
    }

    75% {
        transform: translate(-20px, -20px) scale(1.05);
    }
}

.detail-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 110;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 100px;
}

.back-btn:hover {
    transform: translateX(-5px) scale(1.02);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.back-btn:hover::before {
    opacity: 0.1;
}

.back-btn i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.back-btn:hover i {
    transform: translateX(-3px);
    animation: arrowBounce 0.6s ease infinite;
}

.back-btn span {
    position: relative;
    z-index: 1;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.badge-icon {
    font-size: 1.4rem;
    color: var(--cyan);
}

.badge-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}




.detail-content {
    display: flex;
    flex-wrap: nowrap;
    min-height: 100vh;
    padding-top: 130px;
    margin: 0 auto;
    max-width: 1320px;
    width: 100%;
    gap: 2rem;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 4rem;
    box-sizing: border-box;
}

.detail-hero {
    width: 360px;
    min-width: 300px;
    flex-shrink: 0;
    height: fit-content;
    max-height: calc(100vh - 100px);
    position: sticky;
    top: 88px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.hero-icon {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-icon.cyan {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.06));
    color: var(--cyan);
}

.hero-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(239, 68, 68, 0.06));
    color: var(--red);
}

.hero-icon.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(168, 85, 247, 0.06));
    color: var(--purple);
}

.hero-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06));
    color: var(--green);
}

.hero-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.06));
    color: var(--orange);
}

.hero-icon.pink {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.18), rgba(244, 114, 182, 0.06));
    color: var(--pink);
}

.hero-icon.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(251, 191, 36, 0.06));
    color: #fbbf24;
}

.hero-icon.teal {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(45, 212, 191, 0.06));
    color: #2dd4bf;
}

.hero-icon i {
    position: relative;
    z-index: 1;
}


.detail-hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.4rem;
    color: #f1f5f9;
    letter-spacing: -0.02em;
    animation: titleFadeIn 0.5s ease forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.detail-hero p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 0 0 0.4rem;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: block;
    animation: heroDropIn 0.5s ease forwards 0.15s;
    opacity: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

@keyframes heroDropIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.meta-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-tag i {
    font-size: 1rem;
    color: var(--cyan);
    opacity: 0.9;
}


.section-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.divider-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    white-space: nowrap;
}


.faq-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-chevron {
    margin-left: auto;
    font-size: 2rem;
    color: var(--muted);
    transition: transform 0.3s ease, color 0.3s;
    flex-shrink: 0;
}

.faq-card.expanded .faq-chevron {
    transform: rotate(180deg);
    color: var(--cyan);
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-card.expanded .faq-card-body {
    max-height: 300px;
    padding-top: 1.2rem;
    opacity: 1;
}

.faq-card.expanded {
    border-color: rgba(34, 211, 238, 0.2);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(20, 30, 50, 0.95));
}


.detail-cta {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-icon {
    font-size: 2.5rem;
    color: var(--cyan);
    opacity: 0.9;
}

.detail-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.detail-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 0 0 1.5rem;
    line-height: 1.5;
    max-width: 480px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px -2px rgba(37, 211, 102, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
}

.cta-btn i {
    font-size: 1.5rem;
}


.detail-main {
    flex: 1;
    min-width: 0;
    height: auto;
    overflow: visible;
    padding: 0 0 4rem;
    position: relative;
}


.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    max-width: 100%;
}


.faq-box {
    background: var(--glass-bg);
    backdrop-filter: saturate(var(--glass-saturate)) blur(var(--glass-blur));
    -webkit-backdrop-filter: saturate(var(--glass-saturate)) blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    transition: transform 0.25s ease, border-color 0.25s, background 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -2px 12px rgba(0, 0, 0, 0.25);
}

.faq-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--deep-purple));
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 3px 0 0 3px;
}

.faq-box:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 243, 255, 0.1),
        0 12px 40px -12px rgba(0, 0, 0, 0.4);
}

.faq-box:hover::before {
    opacity: 1;
}

.faq-box-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.faq-box-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.12);
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-box h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.faq-box-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    padding-left: 2.5rem;
}

@media (max-width: 640px) {
    .faq-box-content p {
        padding-left: 0;
    }
}


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


.detail-hero p,
.hero-desc {
    background: transparent !important;
}


.footer {
    width: 100%;
    padding: 2.5rem 10% 1.5rem;
    background: #0a0e18 !important;
    border: none !important;
    position: relative;
    z-index: 1000;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 5rem;
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.footer-brand p {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.5;
}

.footer-links {
    flex: 2;
    display: flex;

    justify-content: space-around;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col a {
    display: block;
    font-size: 1.35rem;
    color: var(--muted);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-col a:hover {
    color: var(--cyan);
    transform: translateX(5px);
}

.footer-bottom {
    color: var(--text);
    display: flex;
    align-items: center;
    padding-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: var(--text);
    font-size: 1.4rem !important;

}

.footer-socials {
    display: flex;
    gap: 2.5rem;

}

.footer-col a.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-col a.whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.footer-col a.whatsapp-link i {
    font-size: 1.6rem;
}

.footer-socials a:hover {
    color: var(--cyan);
    transform: translateY(-5px);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 4rem;
    }

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


@media (max-width: 992px) {
    .scene-3d {
        width: 100%;
        height: 400px;
    }

    .cube {
        width: 100px;
        height: 100px;

    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .cube-face.front {
        transform: translateZ(50px);
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(50px);
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(50px);
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(50px);
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(50px);
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(50px);
    }

    .bg-neon-text {
        font-size: 10rem;
    }

    .title-overlay h1 {
        font-size: 5rem;
    }
}

@media (max-width: 992px) {
    .scene-3d {
        width: 100%;
        height: 400px;
    }

    .cube {
        margin: 5px;
        width: 100px;
        height: 100px;
    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .cube-face.front {
        transform: translateZ(50px);
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(50px);
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(50px);
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(50px);
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(50px);
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(50px);
    }

    .title-overlay h1 {
        font-size: 5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        z-index: 9000;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 1.5rem 0;
        margin-left: 0;
        font-size: 1.8rem;
        text-align: center;
    }

    .scene-container {
        overflow: visible;
        height: 1000px !important;
    }

    .scene-3d {
        height: 100%;
        left: 50%;
        top: 15% !important;
        transform: translateX(-50%) rotateX(0deg) rotateY(0deg);
        perspective: 3800px;
    }

    .title-overlay {
        display: none;
    }

    .controls-info {
        display: none;
    }

    .cube {
        width: 130px;
        height: 130px;
        margin-left: -25px;
        margin-top: -35px;
        --z-pos: 0px !important;
        animation: cubeFloatMobile 5s ease-in-out infinite;
    }

    @keyframes cubeFloatMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-6px);
        }
    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .cube-face.front {
        transform: translateZ(50px);
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(50px);
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(50px);
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(50px);
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(50px);
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(50px);
    }

    .cube-icon {
        width: 4.2rem;
        height: 4.2rem;
        font-size: 2rem;
        border-radius: 1rem;
        margin-bottom: 0.5rem;
        box-shadow: none;
    }

    .cube h3 {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    /* Consolidated Mobile Cube Layout (3 Columns x 7 Rows) */
    .cube-1 {
        left: 20% !important;
        top: 5% !important;
    }

    .cube-2 {
        left: 50% !important;
        top: 5% !important;
    }

    .cube-3 {
        left: 80% !important;
        top: 5% !important;
    }

    .cube-4 {
        left: 20% !important;
        top: 17.5% !important;
    }

    .cube-5 {
        left: 50% !important;
        top: 17.5% !important;
    }

    .cube-6 {
        left: 80% !important;
        top: 17.5% !important;
    }

    .cube-7 {
        left: 20% !important;
        top: 30% !important;
    }

    .cube-8 {
        left: 50% !important;
        top: 30% !important;
    }

    .cube-9 {
        left: 80% !important;
        top: 30% !important;
    }

    .cube-10 {
        left: 20% !important;
        top: 42.5% !important;
    }

    .cube-11 {
        left: 50% !important;
        top: 42.5% !important;
    }

    .cube-12 {
        left: 80% !important;
        top: 42.5% !important;
    }

    .cube-13 {
        left: 20% !important;
        top: 55% !important;
    }

    .cube-14 {
        left: 50% !important;
        top: 55% !important;
    }

    .cube-15 {
        left: 80% !important;
        top: 55% !important;
    }

    .cube-16 {
        left: 20% !important;
        top: 67.5% !important;
    }

    .cube-17 {
        left: 50% !important;
        top: 67.5% !important;
    }

    .cube-18 {
        left: 80% !important;
        top: 67.5% !important;
    }

    .cube-19 {
        left: 20% !important;
        top: 80.0% !important;
    }

    .cube-20 {
        left: 50% !important;
        top: 80.0% !important;
    }

    .cube-21 {
        left: 80% !important;
        top: 80.0% !important;
    }

    .scene-3d {
        height: 850px !important;
    }

    .bg-neon-text,
    .bg-neon-subtext {
        display: none;
    }

    .title-overlay h1 {
        font-size: 3rem;
    }

    .title-overlay p {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
    }

    .controls-info {
        flex-direction: column;
        gap: 0.8rem;
        bottom: 5%;
    }

    .controls-info span {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }

    .detail-content {
        flex-direction: column;
        height: auto;
        overflow-x: hidden;
        padding-top: 60px;
        /* Header height offset */
    }

    .detail-hero {
        width: 100%;
        max-height: none;
        position: relative !important;
        /* Force override desktop sticky */
        top: 45px !important;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 2rem 1.5rem;
        /* Tightened padding */
        text-align: center;
        background: var(--card-bg);
    }

    .hero-icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        margin: 0 auto 1rem;
    }

    .detail-hero h1 {
        font-size: 1.6rem;
    }

    .detail-hero p {
        font-size: 1.1rem;
        margin: 0 auto 0.4rem;
    }

    .hero-desc {
        text-align: center;
        max-width: 100%;
        font-size: 1.4rem !important;
        /* Scaled down for mobile */
        margin: 0 auto 1rem !important;
    }

    .hero-meta {
        justify-content: center;
        margin-top: 0.8rem;
    }

    .detail-main {
        padding: 0 1.5rem 2rem;
        margin-top: 3.5rem;
        /* Increased spacing as requested */
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        /* Tightened gaps */
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 3rem;
    }

    .detail-footer-cta h3 {
        font-size: 2rem;
    }

    .detail-footer-cta p {
        font-size: 1.2rem;
    }

    .wa-btn {
        font-size: 1.3rem;
        padding: 1.2rem 2.5rem;
    }

    .detail-header {
        padding: 1rem 4%;
    }

    .footer {
        padding: 5rem 5% 3rem;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}

.detail-footer {
    width: 100%;
    background: linear-gradient(180deg, rgba(5, 8, 15, 0) 0%, rgba(11, 15, 25, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 211, 238, 0.1);
    margin-top: 6rem;
}

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

.detail-footer-cta {
    margin-bottom: 4rem;
}

.detail-footer-cta h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-footer-cta p {
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 3.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.5);
}

.wa-btn i {
    font-size: 2.4rem;
}

.detail-footer-bottom {
    padding-top: 3rem;
    color: var(--text);
}

.detail-copyright {
    font-size: 1.4rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.detail-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-footer-links a {
    font-size: 1.3rem;
    color: var(--muted);
    transition: color 0.3s ease;
}

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

.detail-footer-links .dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}


.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.95) 0%, rgba(5, 8, 15, 1) 100%);
    overflow: hidden;
    z-index: 100;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-aurora {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: footerAuroraFloat 12s ease-in-out infinite;
}

.footer-aurora-1 {
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.footer-aurora-2 {
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -6s;
}

@keyframes footerAuroraFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.footer-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(34, 211, 238, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(34, 211, 238, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 5% 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    display: block;
    margin-bottom: 1rem;
}

.logo-accent {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), transparent);
    border-radius: 10px;
}

.footer-desc {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 3rem;
}

.footer-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--cyan);
}

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

.stat-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--muted);
}

.footer {
    position: relative;
    background: rgba(8, 12, 20, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8rem 0 4rem;
    margin-top: 0;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--cyan), transparent);
    box-shadow: 0 0 15px var(--cyan);
    opacity: 0.7;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8rem;
    margin-bottom: 6rem;
}

.footer-brand {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.footer-brand .logo {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
}

.footer {
    padding: 8rem 5% 4rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 6rem;
}

.footer-brand .logo {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-decoration: none;
    letter-spacing: -1px;
}

.footer-brand .logo span {
    color: var(--cyan);
}

.footer-brand p {
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 400px;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--cyan);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: contents;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: none;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 6rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-mini {
    font-size: 1.3rem;
    color: #64748b;
    text-align: center;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 5rem 5% 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 3rem;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: clamp(2.8rem, 7vw, 4rem);
    }

    .intro-desc {
        font-size: 1.4rem;
    }

    .enter-btn {
        padding: 1.4rem 3rem;
        font-size: 1.4rem;
    }

    .scene-3d {
        height: 480px;
    }

    .cube {
        width: 65px;
        height: 65px;
    }

    .cube-face {
        width: 65px;
        height: 65px;
    }

    .cube-face.front {
        transform: translateZ(32px);
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(32px);
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(32px);
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(32px);
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(32px);
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(32px);
    }

    .cube-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.35rem;
        border-radius: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .cube-icon {
        box-shadow: none;
    }

    .cube h3 {
        font-size: 0.8rem;
    }

    .title-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .title-overlay p {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .controls-info span {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .detail-hero {
        padding: 2.5rem 1.5rem;
    }

    .detail-hero h1 {
        font-size: 1.6rem;
    }

    .detail-hero p {
        font-size: 1.1rem;
    }

    .hero-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-box {
        padding: 1.2rem 1.4rem;
    }

    .faq-box h4 {
        font-size: 1.2rem;
    }

    .faq-box-content p {
        font-size: 1.05rem;
        padding-left: 0;
    }

    .detail-footer-cta h3 {
        font-size: 1.8rem;
    }

    .detail-footer-cta p {
        font-size: 1.2rem;
    }

    .wa-btn {
        font-size: 1.3rem;
        padding: 1.2rem 2.5rem;
    }
}