/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette */
    --color-bg: #120a1f; 
    --color-card-bg: #1e112a;
    --color-purple: #2d0a31;
    --color-neon-pink: #ff007f;
    --color-soft-pink: #ff80bf;
    --color-text: #ffffff;
    --color-text-muted: #b3a0c0;
    --color-success: #00ffaa;
    --color-btn-purple: #5a2d8c; 
    
    /* Typography */
    --font-headlines: 'Alatsi', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Global Ambient Glow Overlay */
body::before {
    content: "";
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.08), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1, h2, h3, .logo, .face {
    font-family: var(--font-headlines);
    text-transform: uppercase;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 10px; }
p { color: var(--color-text-muted); font-size: 1rem; }

.neon-text {
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
}

/* =========================================
   3. GLOBAL COMPONENTS
   ========================================= */

/* --- Standard Buttons --- */
.btn {
    background: var(--color-neon-pink);
    border: none;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.6);
}

.btn svg {
    margin-right: 10px;
    width: 15px;
    height: auto;
}

/* --- Section Styling --- */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   4. NAVIGATION
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(18, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0px;
    letter-spacing: -1px;
}

.logo-icon {
    height: 30px; 
    width: auto;
    filter: drop-shadow(0 0 5px var(--color-neon-pink));
}

.nav-links {
    display: none; /* Hidden on mobile by default */
}

/* Desktop Nav Links */
@media(min-width: 900px) {
    .nav-links { 
        display: flex; 
        gap: 35px;
        font-family: var(--font-headlines); 
        font-size: 1rem; 
        font-weight: 300; 
        text-transform: uppercase; 
    }
    .nav-links a { 
        color: white; 
        text-decoration: none; 
        opacity: 0.9; 
        transition: opacity 0.2s;
    }
    .nav-links a:hover { 
        opacity: 1; 
        color: var(--color-neon-pink); 
    }
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 50px 5% 0px;
    position: relative;
    background: 
        linear-gradient(to bottom right, rgba(45, 10, 49, 1.0), rgba(18, 10, 31, 0.6)),
        url('../IMG/purple_silk_bg.jpg'); 
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 -10px 10px -5px rgba(0, 0, 0, 0.5);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

/* --- Hero Left --- */
.hero-left {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 150px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid var(--color-neon-pink);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-neon-pink);
    width: fit-content;
}

.hero-left h1 { font-size: 4rem; margin-bottom: 25px; }

.highlight-box {
    background: var(--color-neon-pink);
    display: inline-block;
    padding: 0 15px;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.app-badges {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.badge-text {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

/* --- Floating Visuals --- */
.feature-visuals {
    position: absolute;
    bottom: -300px;
    left: -30px;
    width: 500px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
}

.visual-element {
    position: absolute;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.vis-wheel { width: 320px; left: 50px; bottom: -40px; z-index: 1; opacity: 0.9; transform: rotate(15deg); }
.vis-mask { width: 140px; left: 0; top: 40px; z-index: 2; transform: rotate(-10deg); }
.vis-cherry { width: 150px; right: 40px; top: -20px; z-index: 3; transform: rotate(10deg); }

.swirl-line {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: rotateX(70deg);
    z-index: 2;
    pointer-events: none;
}
.swirl-1 { width: 400px; height: 100px; top: 120px; left: 20px; }
.swirl-2 { width: 450px; height: 120px; top: 140px; left: 0px; opacity: 0.5; }

/* --- Hero Right (Phones) --- */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 600px;
    margin-bottom: 50px;
}

.phone-cluster {
    position: relative;
    width: 400px;
    height: 600px;
}

.phone {
    position: absolute;
    width: 280px;
    border-radius: 44px; 
    border: 5px solid #1a1a1a; 
    background-color: #000;
    box-shadow: 0 0 0 1px #444, 0 30px 60px rgba(0,0,0,0.7);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.phone img { display: block; width: 100%; height: auto; border-radius: 38px; }

.phone-left {
    top: 80px; left: -90px;
    transform: rotate(-15deg) scale(0.9);
    z-index: 1;
}

.phone-right {
    top: 100px; right: -110px;
    transform: rotate(15deg) scale(0.9);
    z-index: 2;
}

.phone-center {
    top: 20px; left: 40px;
    z-index: 3;
    transform: rotate(0deg) scale(1);
    height: 560px; 
}

/* Interactive Hover States */
.phone-center:hover { transform: rotate(0deg) scale(1.05) translateY(-10px); z-index: 10; }
.phone-left:hover { transform: rotate(-15deg) scale(0.9) translateX(-80px); z-index: 5; }
.phone-right:hover { transform: rotate(15deg) scale(0.9) translateX(80px); z-index: 5; }

/* =========================================
   6. INTERACTIVE APP SCREEN (Wheel)
   ========================================= */
.app-screen {
    width: 100%; height: 100%;
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 10px),
        radial-gradient(circle at center, #4a1a51 0%, #120a1f 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: space-between;
    padding: 0px 5px 30px;
    color: white;
    border-radius: 38px;
}

.app-logo { width: 80%; max-width: 220px; height: auto; margin-top: 50px; }

/* Result Label */
.result-text {
    height: 30px;
    position: relative;
    font-family: var(--font-headlines);
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--color-neon-pink);
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 20;
}
.result-text.show { opacity: 1; }

/* Wheel Container */
.wheel-container-outer {
    position: relative;
    width: 280px; height: 280px;
    display: flex; align-items: center; justify-content: center;
}

.kama-wheel {
    width: 100%; height: 100%;
    border-radius: 50%;
    position: relative;
    background-image: url('../IMG/UI/Wheel Positions.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0; 
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.23, 0.99), opacity 0.8s ease-in;
}

.kama-wheel-cover {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../IMG/UI/Wheel_preSpin.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: center;
}

.cover-main-text {
    font-family: var(--font-headlines);
    font-size: 1.1rem;
    line-height: 1.4;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255, 0, 127, 0.4);
    position: relative; width: 90%;
}

.cover-footer-stats {
    display: flex; justify-content: space-between;
    width: 90%; padding: 0 20px;
}

.c-stat { display: flex; flex-direction: column; align-items: center; opacity: 0.75; }
.c-val { font-family: var(--font-headlines); font-size: 1.4rem; font-weight: bold; line-height: 1; }
.c-label { font-size: 0.5rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Center Knob */
.wheel-center-knob {
    position: absolute;
    width: 25px; height: 25px;
    background: var(--color-neon-pink);
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex; justify-content: center; align-items: center;
}
.wheel-center-knob::after {
    content: '';
    position: absolute;
    top: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--color-neon-pink);
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.3));
}

/* App Button Pulse */
@keyframes pulse-purple {
    0% { transform: scale(1); filter: brightness(1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
    50% { transform: scale(1.05); filter: brightness(1.2); box-shadow: 0 0 20px rgba(90, 45, 140, 0.6); }
    100% { transform: scale(1); filter: brightness(1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
}

.app-btn {
    background: var(--color-btn-purple);
    border: none;
    padding: 5px 0px;
    width: 90%;
    color: white; font-family: var(--font-headlines);
    font-size: 1.5rem; 
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.2s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: pulse-purple 2s infinite ease-in-out;
}
.app-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); background: #6a3d9c; }
.app-btn:active { transform: translateY(1px); box-shadow: 0 2px 5px rgba(0,0,0,0.3); }

/* =========================================
   7. STATS BAR
   ========================================= */
.stats-bar {
    display: flex;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    padding: 80px 5% 60px;
    flex-wrap: wrap;
    gap: 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 5;
}

.stat-item h3 {
    font-family: var(--font-headlines);
    font-size: 2.5rem;
    color: var(--color-neon-pink);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255,0,127,0.3);
}

.laurel-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.laurel-img { height: 60px; width: auto; display: block; }
.right-laurel { transform: scaleX(-1); }
.laurel-wrapper h3 { margin: 0; line-height: 1; font-size: 3.5rem; }

/* =========================================
   8. MAIN CONTENT SECTIONS
   ========================================= */

/* --- Benefits --- */
#benefits {
    background-image: linear-gradient(to right, rgba(18, 10, 31, 0.9), rgba(18, 10, 31, 0.7)), url('../IMG/Couple_01.jpg');
    background-size: cover;
    background-position: center 40%;
    padding: 100px 20px; 
    max-width: 100%; 
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item .icon-circle {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #2a1a3a, #1a0520);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.benefit-item:hover .icon-circle { transform: scale(1.1); background: var(--color-neon-pink); border-color: white; }

/* --- Modes --- */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 10px;
}

.mode-card {
    background: #190e24;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.mode-card:hover { border-color: var(--color-neon-pink); transform: translateY(-5px); background: #221230; }

.mode-image {
    width: 130px; height: auto; margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mode-card:hover .mode-image { transform: scale(1.1) rotate(5deg); }
.mode-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: white; }

/* =========================================
   9. DASHBOARD (Dice & Viz)
   ========================================= */
.dashboard-wrapper {
    background: linear-gradient(145deg, rgba(30, 17, 42, 0.6), rgba(18, 10, 31, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.08) 0%, transparent 70%);
    transform: translate(-30%, -30%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-content {
    position: relative; z-index: 2;
    display: flex; flex-wrap: wrap; align-items: center; gap: 60px;
}

/* --- Left Side: Dice --- */
.dice-side-left {
    flex: 1;
    min-width: 300px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.dice-header-small {
    font-family: var(--font-headlines);
    color: var(--color-neon-pink);
    font-size: 1.2rem; letter-spacing: 2px;
    margin-bottom: 10px; text-transform: uppercase; opacity: 0.8;
}

.dice-stage {
    position: relative; text-align: center; padding: 40px 0;
}
.dice-stage::after {
    content: '';
    position: absolute;
    bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 40px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 127, 0.2), transparent 70%);
    z-index: -1;
}

.dice-container {
    display: flex; justify-content: center; gap: 50px;
    perspective: 1000px; margin-top: 30px;
}

.cube {
    width: 100px; height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-45deg); 
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}
.face {
    position: absolute;
    width: 100px; height: 100px;
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--color-purple);
    border: 2px solid #eee;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.2);
    backface-visibility: hidden;
}
.front  { transform: translateZ(50px); }
.back   { transform: rotateY(180deg) translateZ(50px); }
.right  { transform: rotateY(90deg) translateZ(50px); }
.left   { transform: rotateY(-90deg) translateZ(50px); }
.top    { transform: rotateX(90deg) translateZ(50px); }
.bottom { transform: rotateX(-90deg) translateZ(50px); }

.instruction-pill {
    display: inline-block; padding: 8px 24px;
    border: 1px solid white; border-radius: 30px;
    margin-bottom: 20px; font-size: 0.9rem;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }

/* --- Right Side: Data Viz --- */
.dice-side-right { flex: 1; min-width: 300px; }
.data-viz-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.viz-header { margin-bottom: 25px; }
.slider-container { margin-bottom: 30px; }
.slider-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 600; font-size: 0.9rem; }

/* Custom Range Slider */
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; height: 20px; width: 20px;
    border-radius: 50%; background: var(--color-neon-pink);
    cursor: pointer; margin-top: -8px; box-shadow: 0 0 10px var(--color-neon-pink);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 4px; cursor: pointer;
    background: rgba(255,255,255,0.2); border-radius: 2px;
}

.stats-grid { display: flex; flex-direction: column; gap: 15px; }
.stat-row { display: grid; grid-template-columns: 100px 1fr 50px; align-items: center; gap: 15px; font-size: 0.85rem; }
.bar-container { height: 10px; background: rgba(0,0,0,0.3); border-radius: 5px; overflow: hidden; position: relative; }
.bar-fill { height: 100%; background: var(--color-neon-pink); width: 0%; transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s; border-radius: 5px; }
.stat-val { text-align: right; font-weight: bold; color: var(--color-neon-pink); }
.viz-footer { margin-top: 20px; font-size: 0.75rem; opacity: 0.5; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }


/* =========================================
   10. REVIEWS & CAROUSEL
   ========================================= */
.quote-section { text-align: center; padding: 100px 20px; }
.carousel-wrapper {
    position: relative; max-width: 900px; margin: 0 auto;
    overflow: hidden; cursor: pointer; min-height: 400px;
    display: flex; align-items: center;
}
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); width: 100%; }

.review-slide {
    min-width: 100%; box-sizing: border-box; padding: 0 20px;
    opacity: 0.4; transform: scale(0.9); transition: all 0.5s ease;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.review-slide.active { opacity: 1; transform: scale(1); }
.review-stars { color: var(--color-neon-pink); font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 5px; }
.review-title { font-family: var(--font-headlines); font-size: 1.5rem; margin-bottom: 15px; color: #fff; text-transform: uppercase; }
.review-body { font-size: 1.1rem; font-style: italic; line-height: 1.6; margin-bottom: 30px; color: var(--color-text-muted); max-width: 700px; }

.review-meta { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.review-author { font-weight: bold; color: var(--color-neon-pink); text-transform: uppercase; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; opacity: 0.5; }

.carousel-progress {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
}
.progress-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 50%; transition: background 0.3s; }
.progress-dot.active { background: var(--color-neon-pink); box-shadow: 0 0 10px var(--color-neon-pink); }


/* =========================================
   11. INSIGHTS & FAQ
   ========================================= */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.insight-card {
    display: flex; align-items: center; gap: 20px;
    background: #190e24; padding: 20px; border-radius: 20px;
    margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.2s; cursor: pointer; text-decoration: none; color: inherit;
}
.insight-card:hover { transform: translateX(10px); border-color: rgba(255,255,255,0.2); }
.insight-thumb {
    width: 80px; height: 80px; background: #2a1a3a;
    border-radius: 15px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.insight-text h4 { margin-bottom: 5px; color: white; }
.insight-text p { font-size: 0.85rem; margin: 0; color: var(--color-text-muted); }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 15px; }
.faq-item summary {
    padding: 15px 0; cursor: pointer; font-family: var(--font-headlines);
    font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '⌄'; font-size: 1.5rem; color: var(--color-neon-pink); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding-bottom: 20px; font-size: 0.95rem; color: var(--color-text-muted); }


/* =========================================
   12. MEGA FOOTER
   ========================================= */
.mega-footer {
    background-color: #05020a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0; margin-top: 80px; font-family: var(--font-body);
}

.footer-cta-banner {
    background: linear-gradient(90deg, #1a0b2e 0%, #2d0a31 100%);
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
}

.cta-content {
    max-width: 1000px; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { font-size: 2.5rem; margin-bottom: 10px; color: white; }
.cta-text p { color: var(--color-text-muted); font-size: 1.1rem; max-width: 500px; }

.footer-links-area {
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 { color: white; font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; opacity: 0.6; margin-bottom: 25px; max-width: 300px; }

.support-link-inline {
    display: inline-flex; align-items: center; gap: 10px;
    color: white; text-decoration: none; margin-top: 15px; font-weight: 500;
    transition: all 0.2s; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px;
}
.support-link-inline:hover { color: var(--color-neon-pink); border-color: var(--color-neon-pink); padding-left: 5px; }

.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: var(--color-text-muted); text-decoration: none; transition: color 0.2s;
    font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--color-neon-pink); padding-left: 5px; }

.footer-copyright {
    text-align: center; padding: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3); font-size: 0.85rem;
}


/* =========================================
   13. ARTICLE PAGE STYLES
   ========================================= */
.article-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(45, 10, 49, 1), rgba(18, 10, 31, 0));
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.category-pill {
    display: inline-block; background: rgba(255, 0, 127, 0.1);
    color: var(--color-neon-pink); padding: 5px 15px; border-radius: 20px;
    font-size: 0.8rem; margin-bottom: 20px; border: 1px solid rgba(255, 0, 127, 0.3);
    letter-spacing: 1px; font-weight: 600;
}

.article-hero h1 {
    font-size: 3rem; margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,0,127,0.3);
    line-height: 1.1; color: white; max-width: 900px;
}

.content-wrapper { max-width: 800px; margin: -40px auto 0; padding: 0 20px; position: relative; z-index: 2; }

.glass-card {
    background: rgba(30, 20, 40, 0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); color: #d0d0d0;
}
.glass-card h2 { font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; color: white; border-left: 4px solid var(--color-neon-pink); padding-left: 20px; }
.glass-card p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; }
.article-img { width: 100%; height: auto; border-radius: 20px; margin: 30px 0; border: 1px solid rgba(255,255,255,0.1); }

.inline-cta {
    background: linear-gradient(135deg, #2d0a31, #120a1f);
    border: 1px solid var(--color-neon-pink); padding: 40px; border-radius: 20px;
    margin-top: 50px; text-align: center;
}
.btn-cta {
    background: var(--color-neon-pink); padding: 15px 40px; color: white;
    border-radius: 50px; font-weight: bold; display: inline-block; margin-top: 15px;
    text-decoration: none; box-shadow: 0 10px 20px rgba(255, 0, 127, 0.4);
    transition: transform 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 0, 127, 0.6); }
.btn-nav { border: 1px solid var(--color-neon-pink); padding: 8px 20px; border-radius: 20px; color: var(--color-neon-pink); font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.btn-nav:hover { background: var(--color-neon-pink); color: white; }


/* =========================================
   14. RESPONSIVE MEDIA QUERIES
   ========================================= */

/* --- TABLET (960px) --- */
@media(max-width: 960px) {
    /* Hero Adjustments */
    .hero-container { flex-direction: column; text-align: center; padding-top: 50px; }
    .hero-left { max-width: 100%; margin-bottom: 60px; align-items: center; overflow: visible; padding-bottom: 0; }
    .app-badges { justify-content: center; align-items: center; }
    
    /* Visuals Adjustment */
    .feature-visuals { position: relative; bottom: 0; left: 0; transform: scale(0.8); margin-top: -50px; }
    .hero-right { height: 500px; }
    .phone-cluster { transform: scale(0.8); }

    /* Footer Fixes */
    .cta-content { text-align: center; justify-content: center; }
    .footer-links-area { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand h3 { justify-content: center; }
    .footer-brand p { margin: 0 auto 25px; }
    .footer-col a:hover { padding-left: 0; }

    /* Insight/FAQ Centering */
    .split-section { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .insight-card { margin: 0 auto 20px auto; max-width: 500px; text-align: left; }
    #faq h2 { margin-bottom: 30px; }
    .faq-item { text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
}

/* --- MOBILE (768px) --- */
@media(max-width: 768px) {
    /* Navigation: Hide Button, Center Logo */
    nav .btn { display: none !important; }
    nav { justify-content: center; padding: 15px 20px; height: 70px; }
    .logo { width: auto; justify-content: center; margin: 0; }
    .nav-links { display: none; }

    /* Hero Padding Restored */
    .hero-container { padding-top: 100px !important; }
    .hero-badge { margin-top: 20px; }

    /* Typography & Layout */
    h1 { font-size: 2.5rem; }
    .hero-left h1 { font-size: 2.5rem; }
    
    /* Phone Scaling */
    .phone-cluster { transform: scale(0.6); }
    .hero-right { height: 400px; margin-top: -50px; }
    
    /* Stats Bar */
    .stats-bar { flex-direction: column; gap: 40px; }
    
    /* Article Adjustments */
    .article-hero h1 { font-size: 2rem; }
    .glass-card { padding: 30px 20px; }
}

/* --- SMALL MOBILE (600px) --- */
@media (max-width: 600px) {
    .dice-container { gap: 20px; transform: scale(0.8); }
    .dice-side-left, .dice-side-right { border: none; }
}