:root {
    --bg-dark: #050505;
    --primary: #0A84FF;
    --primary-glow: rgba(10, 132, 255, 0.4);
    --secondary: #AC32FF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 20px;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ... existing code ... */

/* Footer & CTA */
.footer {
    padding: 100px 40px;
    text-align: center;
    position: relative;
    z-index: 5;
}

h1.glitch {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.enter-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.enter-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections & Layout */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.dark {
    background: #080808;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Concept/Guide Cards */
.concept-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.concept-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(10, 132, 255, 0.05);
}

.icon-pulse {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Guide Specifics */
.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--primary);
    background: rgba(10, 132, 255, 0.05);
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
}

.flex-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.text-side {
    flex: 1.2;
}

.visual-side {
    flex: 0.8;
    position: relative;
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

.guide-list {
    list-style: none;
    margin: 30px 0;
}

.guide-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.guide-list li i {
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-box {
    background: rgba(10, 132, 255, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 16px 16px 0;
    font-weight: 500;
}

/* Ikigai Diagram */
.ikigai-diagram {
    width: 320px;
    height: 320px;
    position: relative;
    margin: 0 auto;
}

.ikigai-diagram .circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.6;
}

.c1 {
    background: #FF3B30;
    top: 0;
    left: 60px;
}

.c2 {
    background: #FF9500;
    top: 60px;
    left: 0;
}

.c3 {
    background: #34C759;
    top: 120px;
    left: 60px;
}

.c4 {
    background: #007AFF;
    top: 60px;
    left: 120px;
}

.center-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    z-index: 10;
    filter: drop-shadow(0 0 10px gold);
}

/* Finance Grid */
.finance-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Command Grid */
.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.cmd-box {
    background: #111;
    border: 1px solid #222;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cmd-cat {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
}

code {
    background: #1a1a1a;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #0A84FF;
    border: 1px solid #333;
}

.center-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Gamification Styles */
.xp-bar-container {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.xp-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-align: center;
}

.xp-bar-track {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.xp-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.1s;
    box-shadow: 0 0 15px var(--primary-glow);
}

.features-detail {
    max-width: 800px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.feat-row:hover {
    background: rgba(10, 132, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feat-text h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.feat-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Wheel */
.wheel-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    perspective: 1000px;
}

#landing-wheel {
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transition: transform 0.5s ease;
}

#landing-wheel:hover {
    transform: rotateY(10deg) rotateX(10deg);
}

/* Footer & CTA */
.footer {
    padding: 100px 40px;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--card-border);
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Adjustments for Guide */
@media (max-width: 992px) {
    .flex-layout {
        flex-direction: column;
        gap: 40px;
    }

    .section-title.left {
        text-align: center;
    }

    .ikigai-diagram {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    h1.glitch {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    h1.glitch {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .stat-item .val {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}