/* roulang page: index */
:root {
    --primary-bg: #0A2E1C;
    --secondary-bg: #123E25;
    --accent-gold: #FFD700;
    --accent-red: #D32F2F;
    --text-white: #FFFFFF;
    --text-mint: #D1F2EB;
    --border-gold: #FFD700;
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Navigation */
  nav {
    background-color: rgba(10, 46, 28, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-gold);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-logo i {
    font-size: 1.8rem;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-mint);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease, transform 0.25s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent-gold);
    transform: translateY(-1px);
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-login {
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-login:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
  }

  .btn-signup {
    background: linear-gradient(135deg, var(--accent-gold), #FFC107);
    border: none;
    color: var(--primary-bg);
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    display: inline-block;
  }

  .btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.7);
  }

  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.8rem;
    cursor: pointer;
  }

  /* Hero */
  .hero {
    background-image: url('/assets/images/backpic/back-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px 80px;
    position: relative;
    text-align: left;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 46, 28, 0.92) 0%, rgba(10, 46, 28, 0.75) 100%);
  }

  .hero-content {
    position: relative;
    max-width: 700px;
    margin-left: 5%;
  }

  .hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }

  .hero p {
    font-size: 1.1rem;
    color: var(--text-mint);
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.65;
  }

  .hero-stats {
    display: flex;
    gap: 35px;
    margin: 30px 0;
    flex-wrap: wrap;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    color: var(--text-white);
  }

  .stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
  }

  .stat-label {
    font-size: 0.9rem;
    color: var(--text-mint);
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 14px 36px;
    border-radius: var(--radius-md);
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    display: inline-block;
    font-size: 1.05rem;
  }

  .btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
  }

  /* Section */
  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 14px;
    text-align: left;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--text-mint);
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.6;
  }

  /* Product Showcase */
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
  }

  .showcase-card {
    background: var(--secondary-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
  }

  .showcase-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .showcase-body {
    padding: 20px;
  }

  .showcase-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
  }

  .showcase-body p {
    color: var(--text-mint);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Steps */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
  }

  .step-item {
    background: var(--secondary-bg);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--accent-gold);
    transition: all 0.3s ease;
  }

  .step-item:hover {
    background: #1a4d30;
    transform: translateX(5px);
  }

  .step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 10px;
  }

  .step-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .step-item p {
    color: var(--text-mint);
    font-size: 0.95rem;
  }

  /* Reviews */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .review-card {
    background: var(--secondary-bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,215,0,0.2);
  }

  .review-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .review-text {
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .review-author {
    color: var(--accent-gold);
    font-weight: 700;
  }

  /* Package Comparison */
  .compare-table {
    background: var(--secondary-bg);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    border: 1px solid var(--border-gold);
  }

  .compare-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .compare-table th {
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 16px;
    font-weight: 900;
    text-align: left;
  }

  .compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,215,0,0.15);
    color: var(--text-mint);
  }

  .highlight-row {
    background: rgba(255,215,0,0.08);
  }

  /* Changelog */
  .changelog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .changelog-item {
    background: var(--secondary-bg);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-gold);
  }

  .changelog-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 700;
  }

  .changelog-item h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 6px 0;
  }

  .changelog-item p {
    color: var(--text-mint);
    font-size: 0.9rem;
  }

  /* Insight Cards */
  .insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }

  .insight-card {
    background: var(--secondary-bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,215,0,0.25);
  }

  .insight-card blockquote {
    font-style: italic;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .insight-card .author {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
  }

  /* Live Stream Preview */
  .live-preview {
    background: linear-gradient(135deg, var(--secondary-bg), #0D3320);
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid var(--border-gold);
  }

  .live-cover {
    width: 220px;
    height: 140px;
    background: url('/assets/images/coverpic/cover-5.jpg') center/cover;
    border-radius: var(--radius-md);
    position: relative;
  }

  .live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.75rem;
  }

  .live-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
  }

  .live-info p {
    color: var(--text-mint);
    margin: 8px 0;
  }

  .countdown {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-gold);
  }

  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faq-item {
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid rgba(255,215,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: var(--accent-gold);
    background: #1a4d30;
  }

  .faq-question {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-answer {
    margin-top: 12px;
    color: var(--text-mint);
    line-height: 1.65;
    display: none;
  }

  .faq-item.open .faq-answer {
    display: block;
  }

  /* News List */
  .news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }

  .news-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .news-item {
    background: var(--secondary-bg);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,215,0,0.15);
    transition: background 0.3s;
  }

  .news-item:hover {
    background: #1a4d30;
  }

  .news-item a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    transition: color 0.3s;
  }

  .news-item a:hover {
    color: var(--accent-gold);
  }

  .news-item .meta {
    font-size: 0.8rem;
    color: var(--text-mint);
    margin-top: 6px;
  }

  .news-sidebar {
    background: var(--secondary-bg);
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
  }

  .news-sidebar h4 {
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 14px;
  }

  /* Footer */
  footer {
    background: #092415;
    border-top: 2px solid var(--border-gold);
    padding: 50px 0 25px;
    color: var(--text-mint);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 30px;
  }

  .footer-col h4 {
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 14px;
    font-size: 1.1rem;
  }

  .footer-col a {
    display: block;
    color: var(--text-mint);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .footer-col a:hover {
    color: var(--accent-gold);
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,215,0,0.2);
    padding-top: 18px;
    font-size: 0.85rem;
  }

  .payment-badges {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .badge {
    background: rgba(255,215,0,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
  }

  /* FAB */
  .fab {
    position: fixed;
    left: 16px;
    bottom: 96px;
    z-index: 50;
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.6rem;
    box-shadow: var(--shadow-gold);
    animation: float 3s infinite ease-in-out;
    transition: all 0.3s;
    cursor: pointer;
  }

  .fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255,215,0,0.6);
  }

  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
  }

  .notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: var(--accent-red);
    border-radius: 50%;
    border: 2px solid white;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero h1 { font-size: 2.2rem; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-actions { gap: 8px; }
    .hero { padding: 70px 20px; text-align: left; }
    .hero-content { margin-left: 0; }
    .hero h1 { font-size: 1.9rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .live-preview { flex-direction: column; }
  }

  @media (max-width: 520px) {
    .hero-cta { flex-direction: column; }
    .hero-stats { gap: 20px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .nav-logo { font-size: 1.2rem; }
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--primary-bg);
    padding: 20px;
    gap: 14px;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a {
    color: var(--text-mint);
    text-decoration: none;
    font-weight: 600;
  }

  .mobile-nav a:hover {
    color: var(--accent-gold);
  }

/* roulang page: article */
:root {
            --primary-bg: #0A2E1C;
            --secondary-bg: #123E25;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --border-gold: #FFD700;
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 6px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav {
            background-color: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid var(--border-gold);
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: var(--shadow-gold);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo i {
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.25s ease, transform 0.25s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            transform: translateY(-1px);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-login {
            background: transparent;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 8px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }

        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            border: none;
            color: var(--primary-bg);
            padding: 10px 26px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
            display: inline-block;
        }

        .btn-signup:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 18px rgba(255, 215, 0, 0.7);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(18, 62, 37, 0.98);
            padding: 16px 20px;
            gap: 12px;
            border-top: 1px solid var(--border-gold);
        }

        .mobile-nav a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .mobile-nav a:hover {
            color: var(--accent-gold);
        }

        .article-header {
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            padding: 80px 20px 50px;
            position: relative;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 46, 28, 0.9) 0%, rgba(10, 46, 28, 0.85) 100%);
        }

        .article-header-content {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .article-category-tag {
            display: inline-block;
            background: var(--accent-red);
            color: var(--text-white);
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .article-header h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1.25;
            margin-bottom: 16px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-mint);
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .article-meta i {
            color: var(--accent-gold);
            margin-right: 6px;
        }

        .article-body {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .article-content {
            background: var(--secondary-bg);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin: 30px 0 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
        }

        .article-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 22px 0 10px;
        }

        .article-content p {
            color: var(--text-mint);
            line-height: 1.7;
            margin-bottom: 16px;
            font-size: 1.02rem;
        }

        .article-content ul,
        .article-content ol {
            color: var(--text-mint);
            margin: 16px 0;
            padding-left: 24px;
        }

        .article-content li {
            margin-bottom: 8px;
            line-height: 1.65;
        }

        .article-content blockquote {
            background: rgba(255, 215, 0, 0.08);
            border-left: 4px solid var(--accent-gold);
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--text-mint);
            font-size: 1.05rem;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            margin: 20px 0;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .article-content a {
            color: var(--accent-gold);
            text-decoration: underline;
            font-weight: 600;
        }

        .article-content a:hover {
            color: #FFC107;
        }

        .article-cta {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(211, 47, 47, 0.1));
            border-radius: var(--radius-lg);
            padding: 30px;
            text-align: center;
            margin: 40px 0;
            border: 1px solid var(--border-gold);
        }

        .article-cta h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .article-cta p {
            color: var(--text-mint);
            margin-bottom: 20px;
        }

        .btn-cta-large {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            color: var(--primary-bg);
            padding: 14px 40px;
            border-radius: var(--radius-md);
            font-weight: 900;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }

        .btn-cta-large:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.7);
        }

        .not-found-section {
            text-align: center;
            padding: 100px 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .not-found-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .not-found-section p {
            color: var(--text-mint);
            margin-bottom: 24px;
        }

        .related-section {
            background: var(--primary-bg);
            padding: 60px 0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .related-card {
            background: var(--secondary-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold);
            border-color: var(--accent-gold);
        }

        .related-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .related-body {
            padding: 18px;
        }

        .related-body h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .related-body p {
            color: var(--text-mint);
            font-size: 0.88rem;
            line-height: 1.5;
        }

        footer {
            background: #061f12;
            border-top: 2px solid var(--border-gold);
            padding: 50px 0 30px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }

        .footer-col p {
            color: var(--text-mint);
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .footer-col a {
            display: block;
            color: var(--text-mint);
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 8px;
            transition: color 0.25s ease;
        }

        .footer-col a:hover {
            color: var(--accent-gold);
        }

        .payment-badges {
            display: flex;
            gap: 10px;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .badge {
            background: var(--secondary-bg);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.8rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--text-mint);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .fab-floating {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            background: var(--primary-bg);
            border: 3px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: floatBreath 2.5s ease-in-out infinite;
            opacity: 0.7;
        }

        .fab-floating i {
            font-size: 1.6rem;
            color: var(--accent-gold);
            transition: transform 0.4s ease;
        }

        .fab-floating:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .fab-floating:hover i {
            transform: rotate(360deg);
        }

        .fab-floating:active {
            transform: scale(0.95) translateY(2px);
        }

        .notification-dot {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 12px;
            height: 12px;
            background: var(--accent-red);
            border-radius: 50%;
            border: 2px solid var(--primary-bg);
            animation: blinkDot 1.2s ease-in-out infinite;
        }

        @keyframes floatBreath {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        @keyframes blinkDot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        @media (max-width: 1024px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 28px;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .mobile-nav.active {
                display: flex;
            }
            .article-header {
                padding: 50px 20px 30px;
            }
            .article-header h1 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 20px;
            }
            .article-content h2 {
                font-size: 1.35rem;
            }
            .article-content p {
                font-size: 0.95rem;
            }
            .article-meta {
                gap: 12px;
                font-size: 0.8rem;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 520px) {
            .nav-logo {
                font-size: 1.1rem;
            }
            .nav-logo i {
                font-size: 1.4rem;
            }
            .btn-login,
            .btn-signup {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            .article-header h1 {
                font-size: 1.4rem;
            }
            .article-content {
                padding: 16px;
                border-radius: var(--radius-md);
            }
            .article-content h2 {
                font-size: 1.2rem;
            }
            .article-content blockquote {
                padding: 12px 16px;
            }
            .btn-cta-large {
                padding: 12px 28px;
                font-size: 0.95rem;
            }
        }

/* roulang page: category1 */
:root {
      --primary-bg: #0A2E1C;
      --secondary-bg: #123E25;
      --accent-gold: #FFD700;
      --accent-red: #D32F2F;
      --text-white: #FFFFFF;
      --text-mint: #D1F2EB;
      --border-gold: #FFD700;
      --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
      --radius-lg: 16px;
      --radius-md: 10px;
      --radius-sm: 6px;
    }
    body {
      background-color: var(--primary-bg);
      color: var(--text-white);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      min-height: 100vh;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }
    nav {
      background-color: rgba(10, 46, 28, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--border-gold);
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: var(--shadow-gold);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .nav-logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent-gold);
      text-decoration: none;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-logo i {
      font-size: 1.8rem;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-mint);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.25s ease, transform 0.25s ease;
      position: relative;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent-gold);
      transform: translateY(-1px);
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--accent-gold);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-login {
      background: transparent;
      border: 1.5px solid var(--accent-gold);
      color: var(--accent-gold);
      padding: 8px 20px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
    .btn-login:hover {
      background: var(--accent-gold);
      color: var(--primary-bg);
    }
    .btn-signup {
      background: linear-gradient(135deg, var(--accent-gold), #FFC107);
      border: none;
      color: var(--primary-bg);
      padding: 10px 26px;
      border-radius: var(--radius-sm);
      font-weight: 800;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
      display: inline-block;
    }
    .btn-signup:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(255, 215, 0, 0.7);
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--accent-gold);
      font-size: 1.8rem;
      cursor: pointer;
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: rgba(10, 46, 28, 0.98);
      padding: 20px;
      gap: 12px;
      border-top: 1px solid var(--border-gold);
    }
    .mobile-nav a {
      color: var(--text-mint);
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      padding: 8px 0;
    }
    .mobile-nav a:hover,
    .mobile-nav a.active {
      color: var(--accent-gold);
    }
    .mobile-nav.active {
      display: flex;
    }
    .hero-category {
      background-image: url('/assets/images/backpic/back-2.jpg');
      background-size: cover;
      background-position: center;
      padding: 90px 20px 70px;
      position: relative;
    }
    .hero-category::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 46, 28, 0.93) 0%, rgba(10, 46, 28, 0.78) 100%);
    }
    .hero-cat-content {
      position: relative;
      max-width: 800px;
      margin: 0 auto 0 3%;
    }
    .hero-cat-content h1 {
      font-size: 2.7rem;
      font-weight: 900;
      color: var(--accent-gold);
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .hero-cat-content p {
      font-size: 1.1rem;
      color: var(--text-mint);
      margin-bottom: 28px;
      max-width: 600px;
      line-height: 1.65;
    }
    .hero-badges {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    .hero-badge {
      background: rgba(255, 215, 0, 0.15);
      border: 1px solid var(--accent-gold);
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 700;
      color: var(--accent-gold);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary-lg {
      background: var(--accent-gold);
      color: var(--primary-bg);
      padding: 16px 42px;
      border-radius: var(--radius-md);
      font-weight: 900;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255,215,0,0.4);
      display: inline-block;
      border: none;
      cursor: pointer;
    }
    .btn-primary-lg:hover {
      background: #FFC107;
      transform: translateY(-2px);
    }
    section {
      padding: 70px 0;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--accent-gold);
      margin-bottom: 14px;
      text-align: left;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--text-mint);
      margin-bottom: 40px;
      max-width: 680px;
      line-height: 1.6;
    }
    .game-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 28px;
    }
    .game-card {
      background: var(--secondary-bg);
      border-radius: var(--radius-lg);
      padding: 25px;
      border: 1px solid var(--border-gold);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .game-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-gold);
      border-color: var(--accent-gold);
    }
    .game-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: var(--radius-md);
    }
    .game-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--accent-gold);
    }
    .game-card p {
      color: var(--text-mint);
      font-size: 0.9rem;
      line-height: 1.5;
      flex-grow: 1;
    }
    .game-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--accent-gold);
      font-weight: 600;
    }
    .tag-hot {
      background: var(--accent-red);
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 800;
      font-size: 0.7rem;
    }
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 25px;
    }
    .benefit-item {
      background: var(--secondary-bg);
      padding: 28px 24px;
      border-radius: var(--radius-lg);
      border-left: 6px solid var(--accent-gold);
      transition: all 0.3s ease;
    }
    .benefit-item:hover {
      background: #1a4d30;
      transform: translateX(6px);
    }
    .benefit-item i {
      font-size: 2rem;
      color: var(--accent-gold);
      margin-bottom: 12px;
    }
    .benefit-item h4 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .benefit-item p {
      color: var(--text-mint);
      font-size: 0.9rem;
    }
    .steps-flow {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 30px;
    }
    .step-box {
      flex: 1;
      min-width: 220px;
      background: var(--secondary-bg);
      padding: 30px 25px;
      border-radius: var(--radius-lg);
      border-top: 5px solid var(--accent-gold);
      text-align: left;
      transition: all 0.3s ease;
    }
    .step-box:hover {
      background: #1a4d30;
    }
    .step-num {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--accent-gold);
    }
    .step-box h4 {
      margin: 10px 0 6px;
      font-weight: 800;
    }
    .table-wrapper {
      overflow-x: auto;
      margin-top: 25px;
      border-radius: var(--radius-lg);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--secondary-bg);
      min-width: 700px;
    }
    .comparison-table th {
      background: var(--accent-gold);
      color: var(--primary-bg);
      padding: 16px;
      font-weight: 800;
      text-align: left;
    }
    .comparison-table td {
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,215,0,0.2);
      color: var(--text-mint);
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 800px;
      margin-top: 20px;
    }
    .faq-item {
      background: var(--secondary-bg);
      border-radius: var(--radius-md);
      padding: 22px 24px;
      border: 1px solid transparent;
      transition: border 0.3s;
    }
    .faq-item:hover {
      border-color: var(--accent-gold);
    }
    .faq-item h4 {
      font-weight: 800;
      color: var(--accent-gold);
      margin-bottom: 8px;
    }
    .cta-block {
      background: linear-gradient(135deg, var(--secondary-bg), #0A2E1C);
      border: 2px solid var(--accent-gold);
      border-radius: var(--radius-lg);
      padding: 55px 40px;
      text-align: left;
      box-shadow: var(--shadow-gold);
    }
    .cta-block h3 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--accent-gold);
      margin-bottom: 14px;
    }
    footer {
      background: var(--secondary-bg);
      border-top: 2px solid var(--border-gold);
      padding: 55px 0 25px;
      margin-top: 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 35px;
      margin-bottom: 35px;
    }
    .footer-col h4 {
      color: var(--accent-gold);
      margin-bottom: 16px;
      font-weight: 800;
    }
    .footer-col a {
      display: block;
      color: var(--text-mint);
      text-decoration: none;
      font-size: 0.9rem;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover {
      color: var(--accent-gold);
    }
    .payment-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .badge {
      background: rgba(255,215,0,0.15);
      border: 1px solid var(--accent-gold);
      color: var(--accent-gold);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,215,0,0.2);
      padding-top: 20px;
      text-align: left;
      font-size: 0.85rem;
      color: var(--text-mint);
    }
    .fab-left {
      position: fixed;
      left: 16px;
      bottom: 96px;
      z-index: 50;
      width: 52px;
      height: 52px;
      background: var(--primary-bg);
      border: 3px solid var(--accent-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      font-size: 1.4rem;
      box-shadow: 0 4px 20px rgba(255,215,0,0.5);
      cursor: pointer;
      transition: all 0.3s;
      opacity: 0.7;
      animation: floatFAB 3s infinite;
    }
    .fab-left:hover {
      opacity: 1;
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(255,215,0,0.7);
    }
    @keyframes floatFAB {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    @media (max-width: 1024px) {
      .nav-links { gap: 18px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mobile-menu-btn { display: block; }
      .hero-cat-content h1 { font-size: 2rem; }
      .hero-cat-content { margin-left: 0; }
      .section-title { font-size: 1.6rem; }
      .game-showcase-grid { grid-template-columns: 1fr; }
      .benefit-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 520px) {
      .hero-category { padding: 60px 15px 45px; }
      .hero-cat-content h1 { font-size: 1.6rem; }
      .btn-primary-lg { padding: 14px 28px; font-size: 0.95rem; }
      .cta-block { padding: 35px 22px; }
    }

/* roulang page: category2 */
:root {
            --primary-bg: #0A2E1C;
            --secondary-bg: #123E25;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --border-gold: #FFD700;
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 6px;
        }

        * {
            box-sizing: border-box;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            min-height: 100vh;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        nav {
            background-color: rgba(10, 46, 28, 0.97);
            backdrop-filter: blur(14px);
            border-bottom: 2px solid var(--border-gold);
            position: sticky;
            top: 0;
            z-index: 60;
            box-shadow: var(--shadow-gold);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .nav-logo i { font-size: 1.8rem; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.25s ease, transform 0.25s ease;
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            transform: translateY(-1px);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn-login {
            background: transparent;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 8px 22px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
        }
        .btn-login:hover { background: var(--accent-gold); color: var(--primary-bg); }
        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            border: none;
            color: var(--primary-bg);
            padding: 10px 28px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(255, 215, 0, 0.5);
            display: inline-block;
            font-size: 0.9rem;
        }
        .btn-signup:hover {
            transform: scale(1.06);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.75);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 2rem;
            cursor: pointer;
            padding: 4px;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-bg);
            padding: 10px 24px 20px;
            gap: 12px;
            border-top: 1px solid var(--border-gold);
        }
        .mobile-nav a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,215,0,0.2);
            transition: color 0.2s;
        }
        .mobile-nav a:hover { color: var(--accent-gold); }

        .hero-inner {
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            padding: 90px 20px 70px;
            position: relative;
            text-align: left;
            border-bottom: 3px solid var(--accent-gold);
        }
        .hero-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(10, 46, 28, 0.93) 0%, rgba(10, 46, 28, 0.65) 100%);
        }
        .hero-content {
            position: relative;
            max-width: 720px;
            margin-left: 4%;
        }
        .hero-content h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1.2;
            margin-bottom: 18px;
            text-shadow: 0 3px 10px rgba(0,0,0,0.5);
        }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-mint);
            margin-bottom: 28px;
            max-width: 580px;
            line-height: 1.7;
        }
        .btn-primary {
            background: var(--accent-gold);
            color: var(--primary-bg);
            padding: 16px 42px;
            border-radius: var(--radius-md);
            font-weight: 900;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 22px rgba(255,215,0,0.5);
            display: inline-block;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }
        .btn-primary:hover { background: #FFC107; transform: translateY(-3px); }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 16px 38px;
            border-radius: var(--radius-md);
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1.1rem;
        }
        .btn-outline:hover { background: var(--accent-gold); color: var(--primary-bg); }

        section { padding: 70px 0; }
        .section-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 14px;
            text-align: left;
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--text-mint);
            margin-bottom: 45px;
            max-width: 680px;
            line-height: 1.65;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: var(--secondary-bg);
            padding: 30px 24px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,215,0,0.25);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feature-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-5px);
        }
        .feature-card i {
            font-size: 2.4rem;
            color: var(--accent-gold);
            margin-bottom: 6px;
        }
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-white);
        }
        .feature-card p {
            color: var(--text-mint);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .app-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        .app-card {
            background: var(--secondary-bg);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--border-gold);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
        .app-icon {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }
        .app-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .app-card p {
            color: var(--text-mint);
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 16px;
        }
        .app-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-mint);
            font-size: 0.8rem;
            border-top: 1px solid rgba(255,215,0,0.25);
            padding-top: 14px;
            margin-top: auto;
        }
        .app-meta span { display: flex; align-items: center; gap: 4px; }
        .tag-badge {
            background: var(--accent-red);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.75rem;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        .process-step {
            background: var(--secondary-bg);
            padding: 28px 18px;
            border-radius: var(--radius-lg);
            text-align: center;
            border-top: 4px solid var(--accent-gold);
            transition: all 0.3s;
        }
        .process-step:hover { background: #1a4d30; }
        .process-step span {
            display: inline-block;
            background: var(--accent-gold);
            color: var(--primary-bg);
            font-weight: 900;
            font-size: 1.4rem;
            width: 44px;
            height: 44px;
            line-height: 44px;
            border-radius: 50%;
            margin-bottom: 14px;
        }
        .process-step h4 { font-weight: 800; margin-bottom: 6px; font-size: 1.1rem; }
        .process-step p { color: var(--text-mint); font-size: 0.9rem; }

        .faq-grid {
            display: grid;
            gap: 16px;
            max-width: 850px;
        }
        .faq-item {
            background: var(--secondary-bg);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            border-left: 5px solid var(--accent-gold);
            transition: all 0.25s;
        }
        .faq-item:hover { background: #1a4d30; transform: translateX(4px); }
        .faq-item h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .faq-item p { color: var(--text-mint); font-size: 0.95rem; }

        .cta-section {
            background: linear-gradient(135deg, var(--secondary-bg) 0%, #0a2e1c 100%);
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            text-align: left;
            border: 1px solid var(--accent-gold);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .cta-section h3 { font-size: 1.8rem; font-weight: 900; color: var(--accent-gold); }
        .cta-section p { color: var(--text-mint); margin-top: 8px; }

        footer {
            background-color: #051C10;
            border-top: 2px solid var(--border-gold);
            padding: 50px 0 25px;
            margin-top: 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 35px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }
        .footer-col p { color: var(--text-mint); line-height: 1.6; }
        .footer-col a {
            color: var(--text-mint);
            display: block;
            margin-bottom: 8px;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--accent-gold); }
        .payment-badges { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
        .badge {
            background: var(--secondary-bg);
            border: 1px solid var(--accent-gold);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--accent-gold);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,215,0,0.3);
            padding-top: 22px;
            color: var(--text-mint);
            font-size: 0.85rem;
        }

        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-links, .nav-actions .btn-login, .nav-actions .btn-signup { display: none; }
            .mobile-menu-btn { display: block; }
            .mobile-nav.active { display: flex; }
            .nav-container { padding: 12px 18px; }
            .hero-inner { padding: 60px 16px 50px; }
            .hero-content h1 { font-size: 1.9rem; }
            .features-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; }
            .app-list { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .cta-section { flex-direction: column; gap: 20px; text-align: left; }
        }

/* roulang page: category3 */
/* === Design System (Aligned with Index) === */
        :root {
            --primary-bg: #0A2E1C;
            --secondary-bg: #123E25;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --border-gold: #FFD700;
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 6px;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
            margin: 0;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            background-color: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid var(--border-gold);
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: var(--shadow-gold);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-logo i {
            font-size: 1.8rem;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.25s ease, transform 0.25s ease;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            transform: translateY(-1px);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-gold);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-login {
            background: transparent;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 8px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            border: none;
            color: var(--primary-bg);
            padding: 10px 26px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
            display: inline-block;
        }
        .btn-signup:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 18px rgba(255, 215, 0, 0.7);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 46, 28, 0.98);
            padding: 15px 20px;
            gap: 15px;
            border-top: 1px solid var(--border-gold);
        }
        .mobile-nav a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }
        .mobile-nav a:hover {
            color: var(--accent-gold);
        }
        @media (max-width: 1024px) {
            .nav-links, .nav-actions .btn-login, .nav-actions .btn-signup {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-actions {
                gap: 0;
            }
            .mobile-nav.active {
                display: flex;
            }
        }

        /* Shared Components */
        .btn-primary {
            background: var(--accent-gold);
            color: var(--primary-bg);
            padding: 14px 36px;
            border-radius: var(--radius-md);
            font-weight: 900;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255,215,0,0.4);
            display: inline-block;
            font-size: 1.05rem;
        }
        .btn-primary:hover {
            background: #FFC107;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 14px 32px;
            border-radius: var(--radius-md);
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        section {
            padding: 70px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 14px;
            text-align: left;
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--text-mint);
            margin-bottom: 40px;
            max-width: 650px;
            line-height: 1.6;
        }

        /* Category3 Unique Layout: C Narrative + Brand Gradient Cards */
        .hero-cat {
            background-image: url('/assets/images/backpic/back-3.jpg');
            background-size: cover;
            background-position: center;
            padding: 90px 20px 70px;
            position: relative;
        }
        .hero-cat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,46,28,0.9) 0%, rgba(10,46,28,0.8) 100%);
        }
        .hero-cat-content {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-inner {
            max-width: 500px;
        }
        .hero-cat h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        .hero-cat p {
            font-size: 1.1rem;
            color: var(--text-mint);
            margin: 20px 0;
            line-height: 1.6;
        }
        .download-panel {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-gold);
        }
        .download-panel h3 {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        .btn-download {
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            color: var(--primary-bg);
            padding: 16px 32px;
            border-radius: var(--radius-md);
            font-weight: 900;
            font-size: 1.1rem;
            text-decoration: none;
            margin: 10px 0;
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: scale(1.02);
        }

        /* Feature Highlights */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .feature-card {
            background: var(--secondary-bg);
            padding: 28px;
            border-radius: var(--radius-lg);
            border-top: 4px solid var(--accent-gold);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            background: #1a4d30;
            transform: translateY(-3px);
        }
        .feature-card i {
            color: var(--accent-gold);
            font-size: 2rem;
            margin-bottom: 12px;
        }
        .feature-card h3 {
            font-weight: 800;
            margin-bottom: 8px;
        }

        /* Steps Section */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .step-circle {
            background: var(--secondary-bg);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            margin-bottom: 15px;
        }

        /* FAQ */
        .faq-item {
            background: var(--secondary-bg);
            border-radius: var(--radius-md);
            padding: 22px 28px;
            margin-bottom: 16px;
            border-left: 5px solid var(--accent-gold);
            cursor: pointer;
        }
        .faq-item h3 {
            font-weight: 800;
            color: var(--accent-gold);
        }

        /* Footer */
        footer {
            background: #061a10;
            padding: 50px 0 25px;
            border-top: 2px solid var(--border-gold);
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .footer-col h4 {
            color: var(--accent-gold);
            font-weight: 800;
            margin-bottom: 20px;
        }
        .footer-col a {
            color: var(--text-mint);
            display: block;
            margin-bottom: 12px;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--accent-gold);
        }
        .payment-badges {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .badge {
            background: rgba(255,215,0,0.15);
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,215,0,0.2);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: var(--text-mint);
        }

        @media (max-width: 1024px) {
            .hero-cat-content {
                grid-template-columns: 1fr;
            }
            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
            .steps-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .feature-grid, .steps-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category4 */
:root {
            --primary-bg: #0A2E1C;
            --secondary-bg: #123E25;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --border-gold: #FFD700;
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --transition-smooth: all 0.3s ease;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            font-family: var(--font-main);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        button {
            cursor: pointer;
            font-family: inherit;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        nav {
            background-color: rgba(10, 46, 28, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 2px solid var(--border-gold);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-gold);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        
        .nav-logo i {
            font-size: 1.8rem;
            filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-mint);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.25s ease, transform 0.25s ease;
            position: relative;
            padding-bottom: 4px;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            transform: translateY(-1px);
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .btn-login {
            background: transparent;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 8px 22px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-decoration: none;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
            transform: translateY(-1px);
        }
        
        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            border: none;
            color: var(--primary-bg);
            padding: 10px 28px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .btn-signup:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 22px rgba(255, 215, 0, 0.7);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px;
        }
        
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 46, 28, 0.98);
            border-top: 1px solid var(--border-gold);
            padding: 10px 20px;
            gap: 8px;
        }
        
        .mobile-nav a {
            color: var(--text-mint);
            padding: 10px 0;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            transition: color 0.2s;
        }
        
        .mobile-nav a:hover {
            color: var(--accent-gold);
        }
        
        /* Hero Area */
        .page-hero {
            background-image: url('/assets/images/backpic/back-3.jpg');
            background-size: cover;
            background-position: center;
            padding: 80px 0 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 46, 28, 0.93) 0%, rgba(10, 46, 28, 0.7) 100%);
        }
        
        .page-hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .page-hero-text {
            flex: 1;
            min-width: 300px;
        }
        
        .page-hero-text .badge-tag {
            display: inline-block;
            background: var(--accent-red);
            color: white;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .page-hero-text h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1.2;
            margin-bottom: 18px;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero-text p {
            font-size: 1.1rem;
            color: var(--text-mint);
            margin-bottom: 30px;
            line-height: 1.7;
            max-width: 550px;
        }
        
        .hero-stats-row {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin: 25px 0;
        }
        
        .hero-stat-badge {
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid rgba(255, 215, 0, 0.35);
            border-radius: var(--radius-md);
            padding: 14px 20px;
            text-align: center;
            min-width: 100px;
        }
        
        .hero-stat-badge .number {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent-gold);
            display: block;
        }
        
        .hero-stat-badge .label {
            font-size: 0.8rem;
            color: var(--text-mint);
            font-weight: 600;
        }
        
        .download-box {
            flex: 0 0 380px;
            background: rgba(18, 62, 37, 0.9);
            border: 2px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-gold);
            backdrop-filter: blur(10px);
            text-align: center;
        }
        
        .download-box h3 {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 8px;
            font-weight: 800;
        }
        
        .download-box .sub-text {
            font-size: 0.9rem;
            color: var(--text-mint);
            margin-bottom: 20px;
        }
        
        .qr-placeholder {
            background: white;
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary-bg);
        }
        
        .download-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }
        
        .btn-download {
            background: var(--accent-gold);
            color: var(--primary-bg);
            padding: 12px 20px;
            border-radius: var(--radius-md);
            font-weight: 800;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
        }
        
        .btn-download:hover {
            background: #FFC107;
            transform: translateY(-2px);
        }
        
        .btn-download-alt {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 12px 20px;
            border-radius: var(--radius-md);
            font-weight: 800;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-download-alt:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        
        /* Steps Section */
        .steps-section {
            padding: 70px 0;
            background: var(--secondary-bg);
        }
        
        .section-header {
            margin-bottom: 45px;
        }
        
        .section-header h2 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 10px;
            text-align: left;
        }
        
        .section-header p {
            color: var(--text-mint);
            font-size: 1rem;
            max-width: 650px;
            line-height: 1.6;
        }
        
        .steps-horizontal {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        
        .step-card {
            flex: 0 0 240px;
            background: var(--primary-bg);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            border: 1px solid rgba(255, 215, 0, 0.25);
            scroll-snap-align: start;
            transition: var(--transition-smooth);
            position: relative;
            text-align: left;
        }
        
        .step-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }
        
        .step-number {
            font-size: 3rem;
            font-weight: 900;
            color: rgba(255, 215, 0, 0.2);
            position: absolute;
            top: 10px;
            right: 15px;
            line-height: 1;
        }
        
        .step-card h4 {
            font-size: 1.15rem;
            color: var(--accent-gold);
            margin-bottom: 10px;
            font-weight: 800;
        }
        
        .step-card p {
            color: var(--text-mint);
            font-size: 0.9rem;
            line-height: 1.55;
        }
        
        .steps-horizontal::-webkit-scrollbar {
            height: 4px;
        }
        
        .steps-horizontal::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 4px;
        }
        
        /* Benefit Cards */
        .benefits-section {
            padding: 70px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }
        
        .benefit-card {
            background: var(--secondary-bg);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid transparent;
            transition: var(--transition-smooth);
            text-align: left;
            border-left: 4px solid var(--accent-gold);
        }
        
        .benefit-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }
        
        .benefit-icon {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }
        
        .benefit-card h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        
        .benefit-card p {
            color: var(--text-mint);
            font-size: 0.92rem;
            line-height: 1.55;
        }
        
        /* App Gallery */
        .app-gallery {
            padding: 70px 0;
            background: var(--secondary-bg);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }
        
        .gallery-card {
            background: var(--primary-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.3);
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        
        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-gold);
            border-color: var(--accent-gold);
        }
        
        .gallery-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
        }
        
        .gallery-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .gallery-body h4 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 6px;
        }
        
        .gallery-body .rating {
            color: #FFC107;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        
        .gallery-body p {
            color: var(--text-mint);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 14px;
        }
        
        .btn-sm-gold {
            background: var(--accent-gold);
            color: var(--primary-bg);
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.85rem;
            text-align: center;
            transition: var(--transition-smooth);
            display: inline-block;
            align-self: flex-start;
        }
        
        .btn-sm-gold:hover {
            background: #FFC107;
            transform: scale(1.04);
        }
        
        /* FAQ */
        .faq-section {
            padding: 70px 0;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .faq-item {
            background: var(--secondary-bg);
            border-radius: var(--radius-md);
            padding: 22px 26px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        
        .faq-item:hover {
            border-color: var(--accent-gold);
            background: #1a4d30;
        }
        
        .faq-item h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 6px;
        }
        
        .faq-item p {
            color: var(--text-mint);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* CTA */
        .cta-section {
            padding: 70px 0;
            background: var(--secondary-bg);
            text-align: left;
        }
        
        .cta-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.02));
            border: 2px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 45px 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            justify-content: space-between;
        }
        
        .cta-box h3 {
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        
        .cta-box p {
            color: var(--text-mint);
            font-size: 1rem;
            max-width: 500px;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        
        .btn-cta-primary {
            background: var(--accent-gold);
            color: var(--primary-bg);
            padding: 15px 35px;
            border-radius: var(--radius-md);
            font-weight: 900;
            font-size: 1.05rem;
            transition: var(--transition-smooth);
            box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5);
            white-space: nowrap;
        }
        
        .btn-cta-primary:hover {
            transform: scale(1.04);
            background: #FFC107;
        }
        
        .btn-cta-outline {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 15px 30px;
            border-radius: var(--radius-md);
            font-weight: 800;
            font-size: 1.05rem;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }
        
        .btn-cta-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        
        /* Footer */
        footer {
            background: #051a0f;
            padding: 55px 0 25px;
            border-top: 3px solid var(--border-gold);
            font-size: 0.9rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin-bottom: 35px;
        }
        
        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }
        
        .footer-col a {
            display: block;
            color: var(--text-mint);
            margin-bottom: 8px;
            transition: color 0.2s;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .footer-col a:hover {
            color: var(--accent-gold);
        }
        
        .payment-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        
        .badge {
            background: rgba(255, 215, 0, 0.15);
            color: var(--accent-gold);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            border: 1px solid rgba(255, 215, 0, 0.4);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            color: var(--text-mint);
            font-size: 0.82rem;
        }
        
        /* FAB */
        .fab-support {
            position: fixed;
            left: 20px;
            bottom: 100px;
            z-index: 60;
            width: 56px;
            height: 56px;
            background: var(--primary-bg);
            border: 3px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.6rem;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
            transition: var(--transition-smooth);
            cursor: pointer;
            opacity: 0.75;
            animation: float 3s ease-in-out infinite;
        }
        
        .fab-support:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(255, 215, 0, 0.55);
        }
        
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .page-hero-content {
                flex-direction: column;
                gap: 30px;
            }
            .download-box {
                flex: 1;
                width: 100%;
                max-width: 400px;
            }
            .steps-horizontal {
                gap: 16px;
            }
            .step-card {
                flex: 0 0 210px;
            }
            .cta-box {
                flex-direction: column;
                text-align: left;
                align-items: flex-start;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .mobile-nav.active {
                display: flex;
            }
            .page-hero-text h1 {
                font-size: 2rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .hero-stats-row {
                gap: 15px;
            }
            .steps-horizontal {
                gap: 12px;
            }
            .step-card {
                flex: 0 0 190px;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .cta-box {
                padding: 30px 22px;
            }
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            .btn-cta-primary,
            .btn-cta-outline {
                text-align: center;
            }
            .fab-support {
                left: 12px;
                bottom: 80px;
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 520px) {
            .nav-logo {
                font-size: 1.2rem;
            }
            .nav-actions .btn-login,
            .nav-actions .btn-signup {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
            .page-hero {
                padding: 50px 0 40px;
            }
            .page-hero-text h1 {
                font-size: 1.7rem;
            }
            .download-box {
                padding: 20px;
            }
            .steps-horizontal {
                flex-direction: column;
                gap: 14px;
                overflow-x: visible;
            }
            .step-card {
                flex: auto;
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero-stat-badge {
                min-width: 70px;
                padding: 10px 14px;
            }
            .hero-stat-badge .number {
                font-size: 1.3rem;
            }
        }
