        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }
        .hero {
            background: linear-gradient(135deg, #3d8a02, #2d6e01);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }
        .hero-logo {
            font-size: 72px;
            line-height: 1;
            margin-bottom: 16px;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .hero p {
            font-size: 20px;
            opacity: 0.95;
            max-width: 500px;
            margin: 0 auto 30px;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .btn {
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        .btn-white {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .btn-white:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }
        .btn-ghost {
            background: rgba(255,255,255,0.15);
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.4);
        }
        .btn-ghost:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-2px);
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 40px;
            color: var(--text);
        }
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text);
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-light);
        }
        .how-it-works {
            background: white;
        }
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        .step {
            text-align: center;
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            margin: 0 auto 15px;
        }
        .step h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .step p {
            font-size: 14px;
            color: var(--text-light);
        }
        .earnings-section {
            background: linear-gradient(135deg, #fff9e6, #fff3cc);
            text-align: center;
        }
        .earnings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        .earning-card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .earning-card .amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
        }
        .earning-card .label {
            font-size: 14px;
            color: var(--text-light);
        }
        .gamification {
            text-align: center;
        }
        .badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        .badge-item {
            background: white;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .badge-item:nth-child(even) {
            background: #faf5ff;
            border: 1px solid #e9d5ff;
        }
        .cta-section {
            background: linear-gradient(135deg, #2d6e01, #3d8a02);
            text-align: center;
            color: white;
            padding: 60px 20px;
        }
        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        footer {
            background: var(--text);
            color: #ccc;
            text-align: center;
            padding: 30px 20px;
            font-size: 14px;
        }
        footer a {
            color: var(--primary);
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .nav-links {
            margin-top: 15px;
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 8px;
        }
        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 15px;
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: white;
        }
        @media (max-width: 480px) {
            .nav-links {
                gap: 4px;
            }
            .nav-links a {
                font-size: 14px;
            }
        }
        /* Hamburger Menu */
        .hamburger {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            width: 44px;
            height: 44px;
            background: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.05);
        }
        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .slide-menu {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100%;
            background: white;
            z-index: 1000;
            padding: 80px 25px 25px;
            box-shadow: 4px 0 20px rgba(0,0,0,0.15);
            transition: left 0.3s ease;
            overflow-y: auto;
        }
        .slide-menu.active {
            left: 0;
        }
        .menu-section {
            margin-bottom: 25px;
        }
        .menu-section-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 10px;
            padding-left: 5px;
        }
        .menu-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 15px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            transition: background 0.2s;
        }
        .menu-link:hover {
            background: var(--bg);
        }
        .menu-link.primary {
            background: var(--primary);
            color: white;
        }
        .menu-link.primary:hover {
            background: var(--primary-dark);
        }
        .menu-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 20px 0;
        }
        .profile-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: linear-gradient(135deg, #dcfce7, #bbf7d0);
            border-radius: 12px;
            margin-bottom: 8px;
            text-decoration: none;
            color: var(--text);
            transition: transform 0.2s;
        }
        .profile-card:hover {
            transform: translateX(5px);
        }
        .profile-avatar {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 16px;
        }
        .profile-info {
            flex: 1;
        }
        .profile-name {
            font-weight: 700;
            font-size: 15px;
        }
        .profile-role {
            font-size: 14px;
            color: var(--text-light);
        }
        /* App Mockup Styles */
        .app-preview {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            padding: 60px 20px;
            text-align: center;
        }
        .phone-frame {
            display: inline-block;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            border-radius: 54px;
            padding: 12px;
            box-shadow: 
                0 0 0 1px rgba(255,255,255,0.1),
                0 0 0 3px #3a3a3a,
                0 25px 50px rgba(0,0,0,0.4),
                inset 0 1px 1px rgba(255,255,255,0.05);
            width: 270px;
            margin: 0 auto;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .phone-frame:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 
                0 0 0 1px rgba(255,255,255,0.15),
                0 0 0 3px #3a3a3a,
                0 35px 70px rgba(0,0,0,0.5),
                inset 0 1px 1px rgba(255,255,255,0.05);
        }
        .phone-tap-hint {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            padding: 8px 16px;
            background: white;
            border-radius: 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: pulse 2s infinite;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
        }
        .phone-tap-hint:hover {
            transform: scale(1.05);
            background: var(--primary);
            color: white;
        }
        .app-preview .phone-frame {
            display: block;
            margin: 0 auto;
        }
        .app-preview {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        /* Demo Modal */
        .demo-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .demo-modal.active {
            opacity: 1;
            visibility: visible;
        }
        .demo-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            background: white;
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.2s;
        }
        .demo-modal-close:hover {
            transform: scale(1.1);
        }
        .demo-phone {
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            border-radius: 58px;
            padding: 14px;
            box-shadow: 
                0 0 0 1px rgba(255,255,255,0.1),
                0 0 0 4px #3a3a3a,
                0 30px 80px rgba(0,0,0,0.6),
                inset 0 1px 1px rgba(255,255,255,0.05);
            width: 320px;
            max-width: 90vw;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        .demo-modal.active .demo-phone {
            transform: scale(1);
        }
        .demo-screen {
            background: var(--bg);
            border-radius: 46px;
            overflow: hidden;
            height: 680px;
            max-height: 85vh;
        }
        .demo-dynamic-island {
            background: #000;
            height: 26px;
            width: 90px;
            margin: 12px auto 0;
            border-radius: 16px;
            box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
        }
        .demo-status-bar {
            display: flex;
            justify-content: space-between;
            padding: 8px 24px 6px;
            font-size: 12px;
            font-weight: 600;
            color: #1a1a1a;
            background: var(--bg);
        }
        .demo-task {
            background: white;
            border-radius: 12px;
            padding: 10px 12px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 2px solid rgba(0,0,0,0.05);
            box-shadow: 0 2px 0 rgba(0,0,0,0.04);
        }
        .demo-task-content {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .demo-task-name {
            font-size: 14px;
            font-weight: 700;
        }
        .demo-task-pts {
            font-size: 10px;
            font-weight: 800;
            color: var(--primary);
            background: rgba(88, 204, 2, 0.1);
            padding: 2px 6px;
            border-radius: 6px;
            display: inline-block;
        }
        .demo-task-check {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            box-shadow: 0 2px 0 #d1d5db;
        }
        .demo-task-check.done {
            background: var(--primary);
            color: white;
            font-size: 14px;
            box-shadow: 0 2px 0 #46a302;
        }
        .demo-task-name.done {
            text-decoration: line-through;
            opacity: 0.5;
        }
        .phone-screen {
            background: var(--bg);
            border-radius: 44px;
            overflow: hidden;
            text-align: left;
            height: 530px;
        }
        .phone-status-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 20px 4px;
            font-size: 11px;
            font-weight: 600;
            color: #1a1a1a;
            background: var(--bg);
        }
        .phone-status-bar .time {
            font-weight: 700;
        }
        .phone-status-bar .icons {
            display: flex;
            gap: 4px;
            font-size: 10px;
        }
        .phone-dynamic-island {
            background: #000;
            height: 22px;
            margin: 10px auto 0;
            width: 72px;
            border-radius: 14px;
            position: relative;
            box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
        }
        .mock-header {
            background: linear-gradient(135deg, #3d8a02, #2d6e01);
            color: white;
            padding: 14px 14px;
            text-align: center;
        }
        .mock-header h3 {
            font-size: 17px;
            margin: 0;
            font-weight: 800;
        }
        .mock-header p {
            font-size: 12px;
            opacity: 0.95;
            margin: 4px 0 0;
        }
        .mock-stats {
            display: flex;
            justify-content: space-around;
            padding: 12px 10px;
            background: white;
            border-bottom: 1px solid #e5e7eb;
        }
        .mock-stat {
            text-align: center;
        }
        .mock-stat-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
        }
        .mock-stat-label {
            font-size: 10px;
            color: var(--text-light);
            margin-top: 2px;
        }
        .mock-tasks {
            padding: 12px;
        }
        .mock-task {
            background: white;
            border-radius: 12px;
            padding: 10px 10px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 0 rgba(0,0,0,0.04);
            border: 1.5px solid rgba(0,0,0,0.06);
        }
        .mock-task-content {
            flex: 1;
            margin-right: 10px;
        }
        .mock-task-check {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 0 #d1d5db;
        }
        .mock-task-check.done {
            background: var(--primary);
            color: white;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 2px 0 #46a302;
        }
        .mock-task-name {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .mock-task-name.done {
            text-decoration: line-through;
            opacity: 0.5;
        }
        .mock-task-pts {
            display: inline-block;
            font-size: 10px;
            font-weight: 800;
            color: var(--primary);
            background: rgba(88, 204, 2, 0.1);
            padding: 2px 6px;
            border-radius: 6px;
        }
        @media (max-width: 600px) {
            .phone-frame {
                width: 240px;
                border-radius: 48px;
                padding: 10px;
            }
            .phone-screen {
                height: 470px;
                border-radius: 40px;
            }
        }
        @media (max-width: 600px) {
            .hero h1 { font-size: 32px; }
            .hero p { font-size: 16px; }
            .btn { display: block; margin: 10px auto; }
            .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .why-tiles { grid-template-columns: repeat(2, 1fr) !important; }
            .features { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 8px; 
            }
            .feature-card {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 12px 8px;
                gap: 4px;
            }
            .feature-icon {
                font-size: 24px;
                margin-bottom: 0;
            }
            .feature-card h3 {
                font-size: 14px;
                margin-bottom: 0;
            }
            .feature-card p {
                display: none;
            }
        }

/* ========== DARK MODE ========== */
body.dark-mode {
    background: var(--bg);
    --bg: #131f24;
    --card-bg: #202f36;
    --text: #e5e5e5;
    --text-light: #a3a3a3;
}
body.dark-mode .hero {
    background: linear-gradient(135deg, #1a3a00, #0f2600);
}
body.dark-mode .section {
    background: #131f24;
}
body.dark-mode .feature-card {
    background: #202f36;
    border-color: #37464f;
}
body.dark-mode .stat {
    background: #202f36;
}
body.dark-mode .stat span:last-child {
    color: #a3a3a3;
}
body.dark-mode footer {
    background: #0f1a1f;
    color: #a3a3a3;
}
body.dark-mode footer a {
    color: var(--primary);
}
body.dark-mode .demo-modal {
    background: rgba(0,0,0,0.8);
}
body.dark-mode .demo-box {
    background: #202f36;
    color: #e5e5e5;
}

/* ========== INLINE STYLE EXTRACTIONS ========== */

/* PWA Install Button */
.btn-pwa-install {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    font-size: 16px;
    padding: 14px 28px;
}

/* Brand accent color */
.accent-orange { color: #ff9600; }

/* Section subtitle */
.section-subtitle {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Section title tight */
.section-title-tight { margin-bottom: 20px; }

/* Why section */
.why-section {
    text-align: center;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-radius: 24px;
    padding: 40px 20px;
    margin-top: 30px;
}

.why-description {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.why-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.why-tile {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.why-tile-icon { font-size: 36px; margin-bottom: 8px; }
.why-tile-title { font-weight: 700; }
.why-tile-desc { font-size: 15px; color: var(--text-light); }

/* Mock task section label */
.mock-section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mock task bonus variant */
.mock-task-bonus {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
}
.mock-task-bonus .mock-task-pts {
    color: #f59e0b;
    background: rgba(245,158,11,0.15);
}
.mock-task-bonus .mock-task-check {
    background: rgba(245,158,11,0.2);
    box-shadow: 0 2px 0 rgba(245,158,11,0.3);
}

/* App preview caption */
.app-preview-caption {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 60px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-quick-ref {
    background: linear-gradient(135deg, #ce82ff11, #ce82ff22);
    border: 2px solid var(--secondary);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.faq-quick-ref h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.faq-quick-ref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 14px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-list details {
    background: var(--bg);
    border-radius: 12px;
    padding: 15px;
}

.faq-list summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list .faq-answer {
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
}

.faq-warning { color: #ef4444; }

.faq-footer {
    text-align: center;
    margin-top: 30px;
}

.faq-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Gamification description */
.gamification-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer styles */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
}

.footer-sep { opacity: 0.5; }

.footer-tagline { margin-top: 10px; }

/* Demo modal overrides */
.demo-screen-scroll {
    position: relative;
    overflow-y: auto;
}

/* Demo app header */
.demo-app-header {
    background: linear-gradient(135deg, #3d8a02, #2d6e01);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 0 rgba(0,0,0,0.15);
}

.demo-app-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: white;
}

.demo-app-actions {
    display: flex;
    gap: 6px;
}

.demo-app-action-btn {
    background: rgba(255,255,255,0.2);
    padding: 6px;
    border-radius: 8px;
    font-size: 14px;
}

/* Demo content area */
.demo-content {
    padding: 16px;
    background: var(--bg);
}

.demo-greeting {
    text-align: center;
    margin-bottom: 16px;
}

.demo-greeting-text {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.demo-streak-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 12px;
}

/* Demo balance hero */
.demo-balance {
    background: linear-gradient(135deg, #3d8a02, #2d6e01);
    color: white;
    padding: 16px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 0 #2d6e01;
}

.demo-balance-level {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.demo-balance-pts {
    font-size: 36px;
    font-weight: 800;
    margin: 8px 0;
}

.demo-balance-value {
    font-size: 14px;
    opacity: 0.9;
}

.demo-balance-bar-wrap {
    margin-top: 10px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.demo-balance-bar {
    width: 65%;
    height: 100%;
    background: white;
    border-radius: 3px;
}

.demo-balance-next {
    font-size: 10px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Demo progress card */
.demo-progress {
    background: white;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 16px;
    border: 2px solid rgba(0,0,0,0.05);
    box-shadow: 0 3px 0 rgba(0,0,0,0.04);
}

.demo-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.demo-progress-label {
    font-weight: 700;
    font-size: 13px;
}

.demo-progress-count {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
}

.demo-progress-bar-wrap {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.demo-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #4ade80);
    width: 50%;
}

/* Demo bonus section label */
.demo-bonus-label {
    font-size: 11px;
    font-weight: 700;
    color: #f97316;
    margin: 16px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Demo bonus card */
.demo-bonus-card {
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 0 #ea580c;
}

.demo-bonus-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.demo-bonus-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.demo-bonus-pts {
    font-size: 11px;
    font-weight: 800;
    color: #f97316;
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
}

.demo-bonus-check {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
}

/* Demo weekly challenges */
.demo-weekly {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 14px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
    color: white;
}

.demo-weekly-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.demo-weekly-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-weekly-item {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.demo-weekly-pts {
    background: rgba(255,255,255,0.3);
    padding: 2px 6px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Profile menu link indent */
.menu-link-indent {
    margin-left: 52px;
    padding: 8px 15px;
    font-size: 13px;
}

/* Profile arrow */
.profile-arrow { color: var(--primary); }
