/* roulang page: index */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-dark: #081A11;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-primary: #FFFFFF;
            --text-soft: #D1F2EB;
            --border-gold: rgba(255, 215, 0, 0.4);
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.15);
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Be Vietnam Pro', 'Segoe UI', 'Roboto', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        button, .btn {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: var(--transition);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(8, 26, 17, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 16px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #FFD700, #FF8C00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #0A2E1C;
            box-shadow: 0 0 16px rgba(255, 215, 0, 0.5);
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.05rem;
            color: #FFD700;
            letter-spacing: 0.02em;
            line-height: 1.2;
            max-width: 200px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-soft);
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.01em;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-login {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-login:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .btn-signup {
            background: linear-gradient(135deg, #FFD700, #FFB300);
            color: #0A2E1C;
            padding: 10px 22px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 800;
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
            transition: var(--transition);
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
            background: linear-gradient(135deg, #FFE44D, #FFC107);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--accent-gold);
            font-size: 1.5rem;
            padding: 4px;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: rgba(8, 26, 17, 0.98);
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            padding: 16px 20px;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu a {
            color: var(--text-soft);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 26, 17, 0.88) 0%, rgba(8, 26, 17, 0.75) 40%, rgba(8, 26, 17, 0.95) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid rgba(255, 215, 0, 0.4);
            color: var(--accent-gold);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            margin-bottom: 24px;
        }

        .hero-badge i {
            font-size: 0.75rem;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            color: var(--accent-gold);
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-soft);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 600px;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #FFD700, #FF8C00);
            color: #0A2E1C;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 800;
            box-shadow: 0 8px 28px rgba(255, 215, 0, 0.4);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(255, 215, 0, 0.55);
            background: linear-gradient(135deg, #FFE44D, #FFA000);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 0.98rem;
            font-weight: 700;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-soft);
            font-weight: 500;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-header {
            margin-bottom: 48px;
            max-width: 650px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--accent-gold);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .section-desc {
            font-size: 1.02rem;
            color: var(--text-soft);
            line-height: 1.7;
        }

        /* Feature Section */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .feature-card {
            background: linear-gradient(160deg, rgba(18, 62, 37, 0.7), rgba(8, 26, 17, 0.9));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover {
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: var(--shadow-gold);
            transform: translateY(-6px);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 215, 0, 0.12);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 0.93rem;
            color: var(--text-soft);
            line-height: 1.65;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: linear-gradient(180deg, rgba(10, 46, 28, 0.6), rgba(8, 26, 17, 0.95));
            border-top: 1px solid rgba(255, 215, 0, 0.15);
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: rgba(18, 62, 37, 0.5);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            border-color: rgba(255, 215, 0, 0.35);
            box-shadow: var(--shadow-gold);
        }

        .testimonial-stars {
            color: var(--accent-gold);
            font-size: 0.9rem;
            margin-bottom: 14px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-soft);
            line-height: 1.65;
            margin-bottom: 18px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFD700, #FF8C00);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #0A2E1C;
            font-size: 0.95rem;
        }

        .author-name {
            font-weight: 700;
            font-size: 0.92rem;
        }

        .author-role {
            font-size: 0.8rem;
            color: var(--text-soft);
        }

        /* News Section */
        .news-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(18, 62, 37, 0.45);
            border: 1px solid rgba(255, 215, 0, 0.12);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            transition: var(--transition);
        }

        .news-item:hover {
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: var(--shadow-gold);
            transform: translateX(4px);
        }

        .news-meta {
            font-size: 0.78rem;
            color: var(--accent-gold);
            font-weight: 600;
            white-space: nowrap;
            min-width: 70px;
        }

        .news-content {
            flex: 1;
        }

        .news-content h4 {
            font-size: 0.98rem;
            font-weight: 700;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .news-content h4 a:hover {
            color: var(--accent-gold);
        }

        .news-content p {
            font-size: 0.85rem;
            color: var(--text-soft);
            line-height: 1.5;
        }

        .news-sidebar {
            background: rgba(18, 62, 37, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            height: fit-content;
        }

        .news-sidebar h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--accent-gold);
        }

        .sidebar-item {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            color: var(--text-soft);
            font-weight: 500;
            transition: var(--transition);
        }

        .sidebar-item:last-child {
            border-bottom: none;
        }

        .sidebar-item:hover {
            color: var(--accent-gold);
            padding-left: 6px;
        }

        /* Progress Section */
        .progress-section {
            background: linear-gradient(160deg, rgba(18, 62, 37, 0.7), rgba(8, 26, 17, 0.95));
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 215, 0, 0.2);
            padding: 48px 40px;
        }

        .progress-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .progress-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .progress-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .step-indicator {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.15);
            border: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.85rem;
            color: var(--accent-gold);
            flex-shrink: 0;
        }

        .step-indicator.completed {
            background: var(--accent-gold);
            color: #0A2E1C;
        }

        .step-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .step-content p {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.55;
        }

        .progress-bar-wrapper {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 8px;
            margin-top: 8px;
        }

        .progress-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #FF8C00);
            border-radius: 8px;
            width: 65%;
            animation: pulseBar 2.5s ease-in-out infinite;
        }

        @keyframes pulseBar {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.75; }
        }

        .reward-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            text-align: center;
        }

        .reward-box h4 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .reward-box p {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        /* Live Preview Section */
        .live-section {
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .live-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8, 26, 17, 0.92) 0%, rgba(8, 26, 17, 0.78) 50%, rgba(8, 26, 17, 0.92) 100%);
        }

        .live-content {
            position: relative;
            z-index: 2;
        }

        .live-card {
            background: rgba(18, 62, 37, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 215, 0, 0.25);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
        }

        .countdown-timer {
            display: flex;
            gap: 16px;
            margin: 24px 0;
        }

        .countdown-block {
            background: rgba(8, 26, 17, 0.8);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 14px 20px;
            text-align: center;
            min-width: 70px;
        }

        .countdown-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.75rem;
            color: var(--text-soft);
            margin-top: 4px;
        }

        .live-points {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 20px 0;
        }

        .live-point {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.92rem;
            color: var(--text-soft);
        }

        .live-point i {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-item {
            background: rgba(18, 62, 37, 0.45);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: var(--radius-md);
            padding: 24px 22px;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(255, 215, 0, 0.35);
            box-shadow: var(--shadow-gold);
        }

        .faq-item h3 {
            font-size: 1.02rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }

        .faq-item p {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.65;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(18, 62, 37, 0.9), rgba(8, 26, 17, 0.98));
            border-top: 1px solid rgba(255, 215, 0, 0.25);
            border-bottom: 1px solid rgba(255, 215, 0, 0.25);
            text-align: center;
            padding: 100px 0;
        }

        .cta-section .container {
            max-width: 700px;
        }

        /* Footer */
        .site-footer {
            background: rgba(8, 26, 17, 0.98);
            border-top: 1px solid rgba(255, 215, 0, 0.25);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo-text {
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.65;
            max-width: 350px;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul a {
            font-size: 0.88rem;
            color: var(--text-soft);
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.82rem;
            color: rgba(209, 242, 235, 0.6);
        }

        .footer-badges {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .badge-18 {
            background: var(--accent-red);
            color: #fff;
            font-weight: 800;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 4px;
        }

        .badge-license {
            font-size: 0.75rem;
            color: var(--accent-gold);
            border: 1px solid rgba(255, 215, 0, 0.3);
            padding: 4px 10px;
            border-radius: 4px;
        }

        /* FAB */
        .fab-left {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0A2E1C, #123E25);
            border: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent-gold);
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            cursor: pointer;
            transition: var(--transition);
            opacity: 0.7;
            animation: fabFloat 3s ease-in-out infinite;
        }

        .fab-left:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
        }

        .fab-left:active {
            transform: scale(0.95);
        }

        .fab-notification {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            background: #D32F2F;
            border-radius: 50%;
            border: 2px solid #0A2E1C;
            animation: blinkDot 1.5s ease-in-out infinite;
        }

        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes blinkDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .feature-grid, .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-title {
                font-size: 2.6rem;
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .progress-grid {
                grid-template-columns: 1fr;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .mobile-menu.active {
                display: flex;
            }
            .hero-section {
                padding: 100px 0 60px;
                min-height: auto;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-desc {
                font-size: 0.98rem;
            }
            .feature-grid, .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .section {
                padding: 56px 0;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-stats {
                gap: 24px;
            }
            .stat-value {
                font-size: 1.4rem;
            }
            .nav-actions {
                gap: 8px;
            }
            .btn-login, .btn-signup {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .countdown-timer {
                gap: 8px;
                flex-wrap: wrap;
            }
            .countdown-block {
                min-width: 60px;
                padding: 10px 14px;
            }
            .countdown-number {
                font-size: 1.4rem;
            }
            .progress-section {
                padding: 32px 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary, .btn-secondary {
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .hero-stats {
                gap: 16px;
                flex-wrap: wrap;
            }
            .stat-item {
                min-width: 45%;
            }
            .logo-text {
                font-size: 0.85rem;
                max-width: 140px;
            }
            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .news-meta {
                min-width: auto;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .fab-left {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                left: 12px;
                bottom: 80px;
            }
        }

/* roulang page: article */
:root {
            --primary-green: #0A2E1C;
            --forest-green: #123E25;
            --gold: #FFD700;
            --lucky-red: #D32F2F;
            --white: #FFFFFF;
            --pale-mint: #D1F2EB;
            --text-secondary: rgba(255,255,255,0.75);
            --border-subtle: rgba(255,215,0,0.25);
            --shadow-gold: 0 4px 20px rgba(255,215,0,0.15);
            --radius-card: 16px;
            --radius-btn: 30px;
            --spacing-section: 72px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(160deg, #071A10 0%, #0A2E1C 35%, #0E3522 70%, #071A10 100%);
            color: var(--white);
            line-height: 1.65;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a { color: inherit; text-decoration: none; transition: color .25s ease; }
        img { max-width: 100%; display: block; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .site-header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 50;
            background: rgba(7,26,16,0.88); backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 8px 24px rgba(0,0,0,0.35);
        }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .logo-link { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.3px; color: var(--gold); }
        .logo-icon { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #FFD700 0%, #C5A059 100%); color: #0A2E1C; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: var(--shadow-gold); }
        .nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
        .nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--pale-mint); position: relative; padding: 6px 0; }
        .nav-links a:hover { color: var(--gold); }
        .nav-links a.active { color: var(--gold); font-weight: 700; }
        .nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 2px; background: var(--gold); }
        .nav-actions { display: flex; align-items: center; gap: 12px; }
        .btn-login { font-size: 0.9rem; font-weight: 600; color: var(--gold); padding: 8px 14px; border-radius: 20px; transition: background .25s ease; }
        .btn-login:hover { background: rgba(255,215,0,0.12); }
        .btn-signup {
            font-size: 0.9rem; font-weight: 700; color: #0A2E1C; background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
            padding: 10px 22px; border-radius: var(--radius-btn); box-shadow: 0 6px 18px rgba(255,215,0,0.35);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .btn-signup:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,215,0,0.5); }
        .mobile-toggle { display: none; font-size: 1.5rem; color: var(--gold); }
        .mobile-menu { display: none; flex-direction: column; background: rgba(7,26,16,0.97); border-top: 1px solid var(--border-subtle); padding: 16px 24px; gap: 12px; }
        .mobile-menu a { font-weight: 600; color: var(--pale-mint); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .mobile-menu a.active { color: var(--gold); }
        .article-hero {
            padding: 140px 0 60px;
            background: linear-gradient(180deg, rgba(7,26,16,0.9) 0%, rgba(10,46,28,0.6) 100%), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            background-blend-mode: overlay;
            border-bottom: 1px solid var(--border-subtle);
        }
        .article-hero .container { max-width: 900px; }
        .article-category-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(211,47,47,0.2); border: 1px solid rgba(211,47,47,0.6);
            color: #FFCDD2; padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
        }
        .article-title {
            font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.25;
            color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.45);
        }
        .article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; color: var(--text-secondary); font-size: 0.95rem; margin-top: 16px; }
        .article-meta i { color: var(--gold); margin-right: 6px; }
        .article-body { padding: 60px 0 80px; }
        .article-body .container { max-width: 900px; }
        .article-content {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: 40px 44px; backdrop-filter: blur(6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.3);
        }
        .article-content p { margin-bottom: 20px; color: rgba(255,255,255,0.88); font-size: 1.05rem; }
        .article-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--gold); margin: 32px 0 16px; }
        .article-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--pale-mint); margin: 24px 0 12px; }
        .article-content ul, .article-content ol { margin: 16px 0 24px 24px; color: rgba(255,255,255,0.85); }
        .article-content li { margin-bottom: 10px; }
        .article-content img { border-radius: 14px; margin: 24px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
        .article-content blockquote {
            border-left: 4px solid var(--gold); padding: 16px 24px; margin: 24px 0;
            background: rgba(255,215,0,0.06); border-radius: 0 12px 12px 0; font-style: italic; color: var(--pale-mint);
        }
        .article-not-found { text-align: center; padding: 80px 20px; }
        .article-not-found i { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
        .article-not-found h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
        .article-not-found p { color: var(--text-secondary); margin-bottom: 28px; }
        .btn-back-home {
            display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
            color: #0A2E1C; font-weight: 700; padding: 12px 28px; border-radius: var(--radius-btn);
            box-shadow: 0 8px 20px rgba(255,215,0,0.3); transition: transform .25s ease, box-shadow .25s ease;
        }
        .btn-back-home:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,215,0,0.5); }
        .cta-section {
            background: linear-gradient(135deg, #0A2E1C 0%, #123E25 50%, #0A2E1C 100%);
            border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
            padding: 64px 0; text-align: center;
        }
        .cta-section h2 { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
        .cta-section p { color: var(--pale-mint); max-width: 600px; margin: 0 auto 28px; }
        .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-gold {
            display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
            color: #0A2E1C; font-weight: 700; padding: 14px 32px; border-radius: var(--radius-btn);
            box-shadow: 0 8px 24px rgba(255,215,0,0.35); transition: transform .25s ease, box-shadow .25s ease;
        }
        .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255,215,0,0.55); }
        .btn-outline-gold {
            display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--gold); color: var(--gold);
            font-weight: 700; padding: 12px 28px; border-radius: var(--radius-btn); transition: background .25s ease, color .25s ease;
        }
        .btn-outline-gold:hover { background: rgba(255,215,0,0.12); }
        .site-footer {
            background: rgba(5,18,11,0.95); border-top: 1px solid var(--border-subtle);
            padding: 56px 0 24px; margin-top: 0;
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
        .footer-brand p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 16px; max-width: 380px; }
        .footer-col h4 { color: var(--gold); font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col a { color: var(--text-secondary); font-size: 0.95rem; }
        .footer-col a:hover { color: var(--gold); }
        .footer-bottom {
            display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
            padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
        }
        .footer-bottom p { color: var(--text-secondary); font-size: 0.9rem; }
        .footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
        .badge-18, .badge-license {
            display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 30px;
            font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
        }
        .badge-18 { background: var(--lucky-red); color: #fff; }
        .badge-license { background: rgba(255,215,0,0.15); border: 1px solid var(--border-subtle); color: var(--gold); }
        .fab-floating {
            position: fixed; left: 16px; bottom: 96px; z-index: 50; width: 58px; height: 58px;
            border-radius: 50%; background: #0A2E1C; border: 3px solid var(--gold);
            display: flex; align-items: center; justify-content: center; color: var(--gold);
            font-size: 1.4rem; box-shadow: 0 4px 20px rgba(255,215,0,0.3);
            animation: floatBreath 3s ease-in-out infinite; opacity: 0.7; transition: all .3s ease;
        }
        .fab-floating:hover { opacity: 1; transform: scale(1.1); animation: none; }
        @keyframes floatBreath {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .mobile-menu.show { display: flex; }
            .article-content { padding: 24px 20px; }
            .article-hero { padding: 120px 0 40px; }
            .article-body { padding: 40px 0 60px; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media (max-width: 520px) {
            .container { padding: 0 16px; }
            .logo-text { font-size: 0.95rem; }
            .btn-signup { padding: 8px 16px; font-size: 0.85rem; }
            .article-title { font-size: 1.7rem; }
            .cta-section h2 { font-size: 1.5rem; }
            .fab-floating { width: 50px; height: 50px; font-size: 1.2rem; bottom: 80px; }
        }

/* roulang page: category1 */
:root {
            --primary-bg: #0A2E1C;
            --secondary-bg: #123E25;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --text-muted: #A8C4B8;
            --border-gold: rgba(255, 215, 0, 0.35);
            --shadow-gold: rgba(255, 215, 0, 0.15);
            --shadow-red: rgba(211, 47, 47, 0.25);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 64px;
            --spacing-2xl: 80px;
            --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.45s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            border: none;
            font-family: var(--font-sans);
            transition: all var(--transition-normal);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER / NAV ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-gold);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-gold), #b8960f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A2E1C;
            font-size: 18px;
            box-shadow: 0 0 15px var(--shadow-gold);
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--accent-gold);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-mint);
            padding: 8px 4px;
            position: relative;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width var(--transition-normal);
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-login {
            background: transparent;
            color: var(--text-mint);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(209, 242, 235, 0.3);
            transition: all var(--transition-fast);
        }

        .btn-login:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), #e6c200);
            color: #0A2E1C;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 15px var(--shadow-gold);
            transition: all var(--transition-normal);
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.35);
            background: linear-gradient(135deg, #ffe033, #ffd700);
        }

        .btn-signup:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px var(--shadow-gold);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            color: var(--text-white);
            font-size: 1.4rem;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: color var(--transition-fast);
        }

        .mobile-toggle:hover {
            color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            background: rgba(10, 46, 28, 0.98);
            border-bottom: 1px solid var(--border-gold);
            padding: 16px 20px;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu a {
            color: var(--text-mint);
            font-weight: 500;
            font-size: 1rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: color var(--transition-fast);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
        }

        .mobile-menu.open {
            display: flex;
        }

        /* ===== MAIN ===== */
        main {
            flex: 1;
            padding-top: 72px;
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            padding: 80px 0 64px;
            background: linear-gradient(160deg, #0A2E1C 0%, #123E25 50%, #0A2E1C 100%);
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(211, 47, 47, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: left;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .hero-badge i {
            font-size: 0.9rem;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text-white);
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            color: var(--accent-gold);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-mint);
            line-height: 1.65;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), #e6c200);
            color: #0A2E1C;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 32px;
            border-radius: var(--radius-md);
            box-shadow: 0 6px 20px var(--shadow-gold);
            transition: all var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-mint);
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            border: 2px solid rgba(209, 242, 235, 0.3);
            transition: all var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.06);
        }

        .hero-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            border: 1px solid var(--border-gold);
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .hero-visual-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 46, 28, 0.9) 0%, transparent 100%);
            padding: 24px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-visual-badge {
            background: var(--accent-red);
            color: #fff;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: 0.06em;
        }

        .hero-visual-text {
            color: var(--text-mint);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== SECTION GENERAL ===== */
        .section {
            padding: 64px 0;
        }

        .section-alt {
            background: var(--secondary-bg);
        }

        .section-header {
            margin-bottom: 36px;
            text-align: left;
        }

        .section-tag {
            display: inline-block;
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-white);
            margin-bottom: 12px;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-mint);
            line-height: 1.6;
            max-width: 680px;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-item {
            padding: 24px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all var(--transition-normal);
        }

        .feature-item:hover {
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.05);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(255, 215, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 16px;
        }

        .feature-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .feature-desc {
            font-size: 0.9rem;
            color: var(--text-mint);
            line-height: 1.55;
        }

        /* ===== GAMES ===== */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .game-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all var(--transition-normal);
            cursor: pointer;
        }

        .game-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 8px 30px var(--shadow-gold);
            transform: translateY(-4px);
        }

        .game-card-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .game-card-body {
            padding: 16px 18px;
        }

        .game-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
        }

        .game-card-meta {
            font-size: 0.82rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .game-card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent-red);
            color: #fff;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 50px;
            letter-spacing: 0.06em;
            box-shadow: 0 2px 8px var(--shadow-red);
        }

        .game-card-tag.hot {
            background: var(--accent-red);
        }

        .game-card-tag.new {
            background: #FF6B00;
        }

        /* ===== STEPS / FLOW ===== */
        .steps-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .step-item {
            padding: 28px 24px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            position: relative;
            transition: all var(--transition-normal);
        }

        .step-item:hover {
            border-color: var(--border-gold);
        }

        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-gold), #b8960f);
            color: #0A2E1C;
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px var(--shadow-gold);
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 0.9rem;
            color: var(--text-mint);
            line-height: 1.55;
        }

        /* ===== FAQ ===== */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            background: rgba(255, 255, 255, 0.03);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-white);
            gap: 16px;
            user-select: none;
        }

        .faq-question i {
            color: var(--accent-gold);
            transition: transform var(--transition-normal);
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow);
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        .faq-answer p {
            color: var(--text-mint);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 72px 0;
            background: linear-gradient(140deg, #0A2E1C 0%, #1a4a2e 60%, #0A2E1C 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 650px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 16px;
            line-height: 1.25;
        }

        .cta-title .highlight {
            color: var(--accent-gold);
        }

        .cta-desc {
            font-size: 1.05rem;
            color: var(--text-mint);
            line-height: 1.65;
            margin-bottom: 28px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #071f13;
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 400px;
        }

        .footer-col h4 {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li a {
            color: var(--text-mint);
            font-size: 0.9rem;
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .badge-18 {
            background: var(--accent-red);
            color: #fff;
            font-weight: 800;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 50px;
            letter-spacing: 0.04em;
        }

        .badge-license {
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 50px;
        }

        /* ===== FAB ===== */
        .fab-support {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 90;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #0A2E1C;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            opacity: 0.7;
            animation: fab-float 3s ease-in-out infinite;
            transition: all var(--transition-normal);
            position: fixed;
        }

        .fab-support:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(255, 215, 0, 0.5);
        }

        .fab-support:active {
            transform: scale(0.95) translateY(2px);
        }

        .fab-notification {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            background: #e53935;
            border-radius: 50%;
            border: 2px solid #0A2E1C;
            animation: fab-pulse 2s ease-in-out infinite;
        }

        @keyframes fab-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes fab-pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-grid {
                gap: 32px;
            }
            
            .features-grid,
            .games-grid,
            .steps-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .hero-stat-value {
                font-size: 1.4rem;
            }
            
            .features-grid,
            .games-grid,
            .steps-wrapper {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            
            .section {
                padding: 48px 0;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .cta-title {
                font-size: 1.6rem;
            }
            
            .nav-wrapper {
                height: 60px;
            }
            
            main {
                padding-top: 60px;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .btn-login,
            .btn-signup {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.95rem;
            }
            
            .hero-stats {
                gap: 14px;
            }
            
            .hero-stat-value {
                font-size: 1.2rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-primary,
            .btn-outline {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .cta-title {
                font-size: 1.4rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .fab-support {
                left: 12px;
                bottom: 80px;
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }
            
            .btn-login,
            .btn-signup {
                padding: 6px 10px;
                font-size: 0.75rem;
            }
            
            .nav-actions {
                gap: 6px;
            }
        }

/* roulang page: category2 */
:root {
            --primary-bg: #0F0C20;
            --secondary-bg: #0B1A30;
            --accent-lime: #CCFF00;
            --accent-cyan: #00F0FF;
            --text-white: #FFFFFF;
            --text-silver: #A6ACAF;
            --border-neon: rgba(0, 240, 255, 0.3);
            --card-bg: rgba(15, 12, 32, 0.85);
            --shadow-neon: 0 0 15px rgba(0, 240, 255, 0.5);
            --shadow-lime: 0 0 20px rgba(204, 255, 0, 0.3);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --spacing-section: 80px;
            --font-body: 'Segoe UI', 'Inter', 'Roboto', system-ui, sans-serif;
            --font-display: 'Segoe UI', 'Inter', 'Roboto', system-ui, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
                              radial-gradient(circle at 80% 80%, rgba(204, 255, 0, 0.03) 0%, transparent 50%);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 12, 32, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 240, 255, 0.15);
            transition: all 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(15, 12, 32, 0.98);
            border-bottom-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-bg);
            font-size: 20px;
            box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
        }

        .logo-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 18px;
            letter-spacing: -0.5px;
            color: var(--text-white);
            line-height: 1.2;
            max-width: 180px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            display: block;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            color: var(--text-silver);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-links li a:hover {
            color: var(--accent-cyan);
            background: rgba(0, 240, 255, 0.08);
        }

        .nav-links li a.active {
            color: var(--accent-lime);
            background: rgba(204, 255, 0, 0.1);
            font-weight: 600;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-login {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--accent-cyan);
            background: transparent;
            border: 1px solid rgba(0, 240, 255, 0.4);
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: rgba(0, 240, 255, 0.1);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
        }

        .btn-signup {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            color: var(--primary-bg);
            background: linear-gradient(135deg, var(--accent-lime), #b3e600);
            box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
            transition: all 0.3s ease;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(204, 255, 0, 0.5);
        }

        .btn-signup:active {
            transform: translateY(0);
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--text-white);
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            color: var(--accent-cyan);
            background: rgba(0, 240, 255, 0.1);
        }

        .mobile-menu {
            display: none;
            background: rgba(15, 12, 32, 0.98);
            border-top: 1px solid rgba(0, 240, 255, 0.15);
            padding: 16px 24px;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu a {
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 500;
            color: var(--text-silver);
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--accent-cyan);
            background: rgba(0, 240, 255, 0.08);
        }

        .mobile-menu a.active {
            color: var(--accent-lime);
            background: rgba(204, 255, 0, 0.1);
        }

        .mobile-menu.open {
            display: flex;
        }

        /* Page Banner */
        .page-banner {
            padding: 140px 0 60px;
            background: linear-gradient(180deg, rgba(11, 26, 48, 0.8) 0%, var(--primary-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .page-banner .container {
            position: relative;
            z-index: 1;
        }

        .banner-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-silver);
            margin-bottom: 16px;
        }

        .banner-breadcrumb a {
            color: var(--accent-cyan);
            transition: color 0.3s ease;
        }

        .banner-breadcrumb a:hover {
            color: var(--accent-lime);
        }

        .banner-title {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
            color: var(--text-white);
            margin-bottom: 16px;
        }

        .banner-title .highlight {
            background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .banner-desc {
            font-size: 18px;
            color: var(--text-silver);
            max-width: 700px;
            line-height: 1.7;
        }

        /* Section Common */
        .section {
            padding: var(--spacing-section) 0;
        }

        .section-alt {
            background: var(--secondary-bg);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--text-white);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-silver);
            line-height: 1.7;
            max-width: 700px;
            margin-bottom: 40px;
        }

        /* Hero Creator Section */
        .creator-hero {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: center;
            padding: 40px 0;
        }

        .creator-profile {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .creator-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
            padding: 3px;
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
        }

        .creator-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-bg);
        }

        .creator-name {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-white);
            letter-spacing: -0.5px;
        }

        .creator-bio {
            font-size: 16px;
            color: var(--text-silver);
            line-height: 1.7;
            max-width: 400px;
        }

        .creator-stats {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .creator-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .creator-stat-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-lime);
        }

        .creator-stat-label {
            font-size: 13px;
            color: var(--text-silver);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .follow-btn {
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            color: var(--primary-bg);
            background: linear-gradient(135deg, var(--accent-lime), #b3e600);
            box-shadow: 0 6px 20px rgba(204, 255, 0, 0.4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .follow-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(204, 255, 0, 0.6);
        }

        .creator-article {
            background: var(--card-bg);
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 40px;
            position: relative;
        }

        .creator-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent-lime), var(--accent-cyan));
            border-radius: var(--radius-lg) 0 0 var(--radius-lg);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 13px;
            color: var(--text-silver);
        }

        .article-meta .tag {
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(204, 255, 0, 0.1);
            color: var(--accent-lime);
            font-weight: 600;
            font-size: 12px;
        }

        .article-title {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-white);
            margin-bottom: 16px;
        }

        .article-excerpt {
            font-size: 16px;
            color: var(--text-silver);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .article-btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            color: var(--primary-bg);
            background: linear-gradient(135deg, var(--accent-cyan), #00c8d4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .article-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 240, 255, 0.4);
        }

        /* Info Cards */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .info-card {
            background: var(--card-bg);
            border: 1px solid rgba(0, 240, 255, 0.15);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .info-card:hover {
            border-color: rgba(0, 240, 255, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        .info-card:hover::before {
            opacity: 1;
        }

        .info-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: rgba(0, 240, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent-cyan);
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 12px;
        }

        .info-card p {
            font-size: 15px;
            color: var(--text-silver);
            line-height: 1.7;
        }

        /* Steps Timeline */
        .steps-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 32px;
        }

        .steps-timeline::before {
            content: '';
            position: absolute;
            left: 14px;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent-lime), var(--accent-cyan));
        }

        .step-item {
            position: relative;
            padding-bottom: 40px;
            padding-left: 24px;
        }

        .step-item:last-child {
            padding-bottom: 0;
        }

        .step-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-bg);
            border: 3px solid var(--accent-lime);
            box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
        }

        .step-number {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-lime);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .step-item h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .step-item p {
            font-size: 15px;
            color: var(--text-silver);
            line-height: 1.7;
        }

        /* Tips List */
        .tips-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .tip-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            border: 1px solid rgba(0, 240, 255, 0.12);
            transition: all 0.3s ease;
        }

        .tip-item:hover {
            border-color: rgba(0, 240, 255, 0.3);
            background: rgba(0, 240, 255, 0.05);
        }

        .tip-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(204, 255, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-lime);
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .tip-item p {
            font-size: 15px;
            color: var(--text-silver);
            line-height: 1.7;
        }

        .tip-item p strong {
            color: var(--text-white);
            font-weight: 600;
        }

        /* Image Content Block */
        .content-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .content-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(0, 240, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .content-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        .content-text h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .content-text p {
            font-size: 16px;
            color: var(--text-silver);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 800px;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid rgba(0, 240, 255, 0.12);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(0, 240, 255, 0.3);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 16px;
        }

        .faq-question:hover {
            background: rgba(0, 240, 255, 0.05);
        }

        .faq-question h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-white);
            line-height: 1.4;
        }

        .faq-icon {
            font-size: 16px;
            color: var(--accent-cyan);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--text-silver);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(204, 255, 0, 0.05));
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 56px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 17px;
            color: var(--text-silver);
            max-width: 600px;
            margin: 0 auto 32px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-primary-cta {
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            color: var(--primary-bg);
            background: linear-gradient(135deg, var(--accent-lime), #b3e600);
            box-shadow: 0 8px 25px rgba(204, 255, 0, 0.4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(204, 255, 0, 0.6);
        }

        .btn-secondary-cta {
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            color: var(--accent-cyan);
            background: transparent;
            border: 2px solid rgba(0, 240, 255, 0.5);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary-cta:hover {
            background: rgba(0, 240, 255, 0.1);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }

        /* Footer */
        .site-footer {
            background: #08060f;
            border-top: 1px solid rgba(0, 240, 255, 0.15);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-silver);
            line-height: 1.7;
            margin-top: 16px;
            max-width: 400px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-silver);
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 240, 255, 0.1);
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-silver);
        }

        .footer-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .badge-18 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 0, 0, 0.15);
            border: 2px solid #ff0000;
            color: #ff0000;
            font-weight: 800;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-license {
            padding: 8px 16px;
            border-radius: 20px;
            background: rgba(204, 255, 0, 0.1);
            border: 1px solid rgba(204, 255, 0, 0.3);
            color: var(--accent-lime);
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        /* FAB */
        .fab-support {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 900;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(15, 12, 32, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid transparent;
            background-image: linear-gradient(rgba(15, 12, 32, 0.85), rgba(15, 12, 32, 0.85)), 
                              linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
            background-origin: border-box;
            background-clip: padding-box, border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-cyan);
            font-size: 24px;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
            animation: fab-breathe 3s ease-in-out infinite;
        }

        .fab-support:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
            color: var(--accent-lime);
        }

        .fab-support:active {
            transform: scale(0.95);
        }

        .fab-support .notification-dot {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff007f;
            border: 2px solid var(--primary-bg);
            animation: dot-blink 1.5s ease-in-out infinite;
        }

        @keyframes fab-breathe {
            0%, 100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.4); }
            50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.6); }
        }

        @keyframes dot-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .creator-hero {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .creator-profile {
                align-items: center;
                text-align: center;
            }

            .creator-bio {
                max-width: 100%;
            }

            .creator-stats {
                justify-content: center;
            }

            .content-split {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .content-image img {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-section: 60px;
            }

            .nav-links {
                display: none;
            }

            .nav-actions .btn-login,
            .nav-actions .btn-signup {
                display: inline-block;
                padding: 8px 16px;
                font-size: 13px;
            }

            .mobile-toggle {
                display: block;
            }

            .banner-title {
                font-size: 32px;
            }

            .banner-desc {
                font-size: 16px;
            }

            .section-title {
                font-size: 26px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .creator-hero {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 24px 0;
            }

            .creator-article {
                padding: 24px;
            }

            .article-title {
                font-size: 22px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-section {
                padding: 40px 24px;
            }

            .cta-section h2 {
                font-size: 26px;
            }

            .fab-support {
                width: 48px;
                height: 48px;
                font-size: 20px;
                left: 12px;
                bottom: 80px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .banner-title {
                font-size: 28px;
            }

            .section-title {
                font-size: 24px;
            }

            .creator-name {
                font-size: 24px;
            }

            .creator-avatar {
                width: 100px;
                height: 100px;
            }

            .creator-stat-value {
                font-size: 20px;
            }

            .article-title {
                font-size: 20px;
            }

            .btn-primary-cta,
            .btn-secondary-cta {
                width: 100%;
                justify-content: center;
            }

            .nav-actions .btn-login {
                display: none;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-card: #0B3B23;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --text-muted: #A7C4B8;
            --border-gold: rgba(255, 215, 0, 0.4);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
            --shadow-gold: 0 4px 20px rgba(255,215,0,0.3);
            --font-primary: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-primary);
            background: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-gold);
        }
        img {
            max-width: 100%;
            display: block;
            height: auto;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header */
        .site-header {
            background: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-gold);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--accent-gold), #B8860B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            font-size: 1.2rem;
            box-shadow: var(--shadow-gold);
        }
        .logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-white);
            letter-spacing: 0.02em;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-mint);
            position: relative;
            padding: 6px 2px;
            transition: color 0.25s;
        }
        .nav-links a:hover {
            color: var(--accent-gold);
        }
        .nav-links a.active {
            color: var(--accent-gold);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-login {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--text-white);
            padding: 9px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .btn-login:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255,215,0,0.08);
        }
        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), #FFA500);
            color: var(--bg-primary);
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: var(--shadow-gold);
            transition: all 0.3s;
        }
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255,215,0,0.5);
            background: linear-gradient(135deg, #FFE44D, #FFB347);
            color: var(--bg-primary);
        }
        .mobile-toggle {
            display: none;
            background: transparent;
            color: var(--text-white);
            font-size: 1.4rem;
            padding: 4px;
        }
        .mobile-menu {
            display: none;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            padding: 16px 24px;
            flex-direction: column;
            gap: 14px;
        }
        .mobile-menu a {
            font-weight: 500;
            color: var(--text-mint);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .mobile-menu a.active {
            color: var(--accent-gold);
        }
        /* Hero - 线索获客提问式首屏 */
        .hero-section {
            background-image: linear-gradient(rgba(10,46,28,0.82), rgba(10,46,28,0.92)), url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            padding: 80px 0 90px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(255,215,0,0.12), transparent 60%);
            pointer-events: none;
        }
        .hero-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            color: var(--text-white);
            letter-spacing: -0.01em;
        }
        .hero-text h1 .gold-text {
            color: var(--accent-gold);
        }
        .hero-text .lead-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-mint);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-text .lead-question i {
            color: var(--accent-gold);
        }
        .hero-text p {
            font-size: 1.05rem;
            color: var(--text-mint);
            margin-bottom: 24px;
            max-width: 540px;
        }
        .hero-form {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 30px 28px;
            box-shadow: var(--shadow-md);
        }
        .hero-form h2 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-white);
        }
        .hero-form .form-sub {
            font-size: 0.9rem;
            color: var(--text-mint);
            margin-bottom: 20px;
        }
        .hero-form .form-group {
            margin-bottom: 16px;
        }
        .hero-form label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-mint);
            margin-bottom: 6px;
        }
        .hero-form input,
        .hero-form select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-sm);
            color: var(--text-white);
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .hero-form input:focus,
        .hero-form select:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
        }
        .hero-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }
        .hero-form select option {
            background: var(--bg-secondary);
            color: var(--text-white);
        }
        .btn-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--accent-gold), #FFA500);
            color: var(--bg-primary);
            font-weight: 700;
            font-size: 1rem;
            border-radius: var(--radius-sm);
            transition: all 0.3s;
            margin-top: 6px;
            letter-spacing: 0.03em;
        }
        .btn-submit:hover {
            background: linear-gradient(135deg, #FFE44D, #FFB347);
            box-shadow: 0 8px 28px rgba(255,215,0,0.5);
            transform: translateY(-2px);
        }
        /* Main sections */
        .section-pad {
            padding: 70px 0;
        }
        .section-pad-sm {
            padding: 50px 0;
        }
        .section-head {
            margin-bottom: 36px;
        }
        .section-head .eyebrow {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--accent-gold);
            background: rgba(255,215,0,0.1);
            border: 1px solid var(--border-gold);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .section-head h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-white);
            line-height: 1.3;
        }
        .section-head p {
            font-size: 1.05rem;
            color: var(--text-mint);
            max-width: 720px;
        }
        /* Safety cards */
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .safety-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,215,0,0.2);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .safety-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .safety-card .card-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,215,0,0.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--accent-gold);
        }
        .safety-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
        }
        .safety-card p {
            font-size: 0.95rem;
            color: var(--text-mint);
            line-height: 1.6;
        }
        /* Steps */
        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            counter-reset: step-counter;
        }
        .step-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            align-items: flex-start;
        }
        .step-item:last-child {
            border-bottom: none;
        }
        .step-num {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent-gold), #B8860B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--bg-primary);
            flex-shrink: 0;
            box-shadow: var(--shadow-gold);
        }
        .step-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-white);
        }
        .step-content p {
            font-size: 0.95rem;
            color: var(--text-mint);
            max-width: 720px;
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-box {
            background: var(--bg-card);
            border: 1px solid rgba(255,215,0,0.2);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s;
        }
        .stat-box:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-md);
        }
        .stat-box .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 4px;
        }
        .stat-box .stat-label {
            font-size: 0.9rem;
            color: var(--text-mint);
        }
        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(255,215,0,0.2);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: var(--accent-gold);
        }
        .faq-question {
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-white);
            background: transparent;
            width: 100%;
            text-align: left;
        }
        .faq-question i {
            color: var(--accent-gold);
            transition: transform 0.3s;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 24px;
            color: var(--text-mint);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 24px 20px;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-secondary), #0B3B23);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }
        .cta-wrapper {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
        }
        .cta-wrapper h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cta-wrapper p {
            font-size: 1.05rem;
            color: var(--text-mint);
            margin-bottom: 26px;
        }
        .btn-cta {
            display: inline-block;
            padding: 15px 36px;
            background: linear-gradient(135deg, var(--accent-gold), #FFA500);
            color: var(--bg-primary);
            font-weight: 700;
            font-size: 1.05rem;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-gold);
            transition: all 0.3s;
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255,215,0,0.5);
            color: var(--bg-primary);
        }
        /* Footer */
        .site-footer {
            background: #081F14;
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 0.8fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            max-width: 360px;
            line-height: 1.6;
        }
        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col ul a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color 0.25s;
        }
        .footer-col ul a:hover {
            color: var(--accent-gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .footer-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .badge-18 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent-red);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            font-weight: 800;
            font-size: 0.85rem;
            color: var(--text-white);
        }
        .badge-license {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            background: rgba(255,215,0,0.1);
            border: 1px solid var(--border-gold);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent-gold);
            letter-spacing: 0.03em;
        }
        /* FAB */
        .fab-left {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1C1C1E, #2A2A2E);
            border: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.4rem;
            opacity: 0.7;
            animation: fabFloat 3s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(255,215,0,0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .fab-left:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(255,215,0,0.5);
            color: var(--accent-gold);
        }
        .fab-left .notification-dot {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 16px;
            height: 16px;
            background: var(--accent-red);
            border: 2px solid var(--bg-primary);
            border-radius: 50%;
            animation: blinkDot 1.5s infinite;
        }
        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes blinkDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-wrapper {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-brand {
                grid-column: span 2;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .mobile-menu.show {
                display: flex;
            }
            .nav-wrapper {
                height: 64px;
            }
            .hero-section {
                padding: 50px 0 60px;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .section-pad {
                padding: 50px 0;
            }
            .section-head h2 {
                font-size: 1.5rem;
            }
            .safety-grid {
                grid-template-columns: 1fr;
            }
            .step-item {
                flex-direction: column;
                gap: 12px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .hero-text .lead-question {
                font-size: 1rem;
            }
            .hero-form {
                padding: 22px 18px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: span 1;
            }
            .logo-text {
                font-size: 0.95rem;
            }
            .btn-login, .btn-signup {
                padding: 7px 12px;
                font-size: 0.8rem;
            }
            .nav-actions {
                gap: 6px;
            }
            .fab-left {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
                left: 12px;
                bottom: 80px;
            }
        }
