/* roulang page: index */
:root {
--primary-bg: #0B0C0E;
--secondary-bg: #14161B;
--accent-gold: #D4AF37;
--accent-amber: #B45309;
--text-white: #F5F5F7;
--text-muted: #CBD5E1;
--text-soft: #A8A29E;
--border-subtle: rgba(212, 175, 55, 0.15);
--shadow-card: 0 4px 24px rgba(0,0,0,0.4);
--radius: 16px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--primary-bg);
color: var(--text-white);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}

.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}

a {
text-decoration: none;
color: inherit;
transition: color 0.3s;
}

img {
max-width: 100%;
height: auto;
display: block;
}

header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(11,12,14,0.92);
backdrop-filter: blur(18px);
border-bottom: 1px solid var(--border-subtle);
transition: background 0.3s;
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.5rem;
color: var(--accent-gold);
letter-spacing: -0.3px;
}

.logo i {
font-size: 1.8rem;
color: var(--accent-amber);
}

nav {
display: flex;
align-items: center;
}

.nav-links {
display: flex;
list-style: none;
gap: 32px;
}

.nav-links a {
font-weight: 500;
font-size: 0.95rem;
color: var(--text-muted);
padding: 8px 0;
position: relative;
transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
color: var(--accent-gold);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--accent-gold);
transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}

.auth-buttons {
display: flex;
align-items: center;
gap: 16px;
margin-left: 32px;
}

.btn-outline {
padding: 10px 22px;
border: 1.5px solid var(--accent-gold);
color: var(--accent-gold);
background: transparent;
border-radius: 24px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
}

.btn-outline:hover {
background: var(--accent-gold);
color: var(--primary-bg);
}

.btn-solid {
padding: 10px 24px;
background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
color: var(--primary-bg);
border: none;
border-radius: 24px;
font-weight: 700;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.btn-solid:hover {
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
transform: translateY(-1px);
}

.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--text-white);
font-size: 1.8rem;
cursor: pointer;
}

section {
padding: 80px 0;
}

.hero-section {
padding-top: 140px;
padding-bottom: 100px;
position: relative;
background: linear-gradient(135deg, #0B0C0E 0%, #1a1f2b 50%, #0d1015 100%);
overflow: hidden;
}

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
opacity: 0.2;
z-index: 0;
}

.hero-inner {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-text h1 {
font-size: 3.2rem;
font-weight: 800;
line-height: 1.15;
color: var(--text-white);
margin-bottom: 24px;
}

.highlight {
background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-text p {
font-size: 1.15rem;
color: var(--text-muted);
margin-bottom: 36px;
line-height: 1.7;
max-width: 520px;
}

.hero-cta {
display: flex;
gap: 18px;
align-items: center;
}

.hero-image {
position: relative;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-card);
}

.hero-image img {
width: 100%;
object-fit: cover;
}

.section-label {
display: inline-block;
padding: 6px 16px;
background: rgba(212, 175, 55, 0.12);
color: var(--accent-gold);
border-radius: 20px;
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 16px;
border: 1px solid var(--border-subtle);
}

.section-title {
font-size: 2.3rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 16px;
line-height: 1.25;
}

.section-desc {
font-size: 1.05rem;
color: var(--text-muted);
margin-bottom: 48px;
max-width: 680px;
line-height: 1.7;
}

.countdown-section {
background: linear-gradient(180deg, #14161B 0%, #0B0C0E 100%);
padding: 40px 0 64px;
}

.countdown-grid {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
}

.countdown-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 36px 44px;
box-shadow: var(--shadow-card);
display: flex;
align-items: center;
gap: 28px;
flex: 1;
min-width: 280px;
}

.countdown-icon {
font-size: 3.5rem;
color: var(--accent-gold);
}

.countdown-timer {
display: flex;
gap: 14px;
}

.timer-block {
background: var(--primary-bg);
border: 1px solid var(--border-subtle);
border-radius: 12px;
padding: 14px 18px;
text-align: center;
}

.timer-value {
font-size: 2rem;
font-weight: 800;
color: var(--accent-gold);
}

.timer-label {
font-size: 0.8rem;
color: var(--text-muted);
margin-top: 4px;
}

.highlights-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}

.highlight-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 40px 32px;
transition: all 0.3s;
box-shadow: var(--shadow-card);
position: relative;
overflow: hidden;
}

.highlight-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 0;
background: linear-gradient(to bottom, var(--accent-gold), var(--accent-amber));
transition: height 0.4s;
}

.highlight-card:hover::before {
height: 100%;
}

.highlight-card:hover {
transform: translateY(-6px);
border-color: var(--accent-gold);
}

.highlight-icon {
font-size: 2.5rem;
color: var(--accent-gold);
margin-bottom: 20px;
}

.highlight-card h3 {
font-size: 1.35rem;
font-weight: 700;
margin-bottom: 12px;
color: var(--text-white);
}

.highlight-card p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.65;
}

.gift-section {
background: var(--primary-bg);
}

.gift-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 28px;
}

.gift-card {
background: linear-gradient(145deg, var(--secondary-bg), #1a1d24);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 32px 24px;
text-align: center;
transition: all 0.3s;
}

.gift-card:hover {
border-color: var(--accent-gold);
box-shadow: 0 8px 28px rgba(212, 175, 55, 0.15);
}

.gift-amount {
font-size: 2.6rem;
font-weight: 800;
color: var(--accent-gold);
margin-bottom: 10px;
}

.gift-condition {
font-size: 0.9rem;
color: var(--text-muted);
margin-bottom: 20px;
}

.btn-small {
padding: 10px 24px;
background: var(--accent-gold);
color: #0B0C0E;
border: none;
border-radius: 24px;
font-weight: 700;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.3s;
display: inline-block;
}

.btn-small:hover {
background: var(--accent-amber);
transform: translateY(-2px);
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 40px;
counter-reset: step;
}

.step-item {
position: relative;
padding-left: 52px;
}

.step-number {
position: absolute;
left: 0;
top: 0;
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
color: var(--primary-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.2rem;
}

.step-item h4 {
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 8px;
color: var(--text-white);
}

.step-item p {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.6;
}

.preview-section {
background: linear-gradient(180deg, #14161B 0%, #0B0C0E 100%);
}

.preview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 28px;
}

.preview-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.3s;
box-shadow: var(--shadow-card);
}

.preview-card:hover {
transform: translateY(-5px);
border-color: var(--accent-gold);
}

.preview-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.preview-info {
padding: 24px 20px;
}

.preview-info h5 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 8px;
}

.preview-info p {
font-size: 0.85rem;
color: var(--text-muted);
line-height: 1.55;
}

.news-section {
background: var(--primary-bg);
}

.news-layout {
display: grid;
grid-template-columns: 1fr 350px;
gap: 40px;
}

.news-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.news-item {
display: flex;
gap: 20px;
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 24px;
transition: all 0.3s;
}

.news-item:hover {
border-color: var(--accent-gold);
box-shadow: var(--shadow-card);
}

.news-thumb {
width: 180px;
height: 120px;
border-radius: 10px;
overflow: hidden;
flex-shrink: 0;
}

.news-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}

.news-content {
flex: 1;
}

.news-date {
font-size: 0.8rem;
color: var(--accent-gold);
margin-bottom: 6px;
}

.news-content h4 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 8px;
}

.news-excerpt {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.55;
}

.news-sidebar {
display: flex;
flex-direction: column;
gap: 24px;
}

.sidebar-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 28px 24px;
}

.sidebar-card h4 {
font-size: 1.2rem;
font-weight: 700;
color: var(--accent-gold);
margin-bottom: 20px;
}

.fast-list {
list-style: none;
}

.fast-list li {
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
font-size: 0.9rem;
color: var(--text-muted);
transition: color 0.2s;
cursor: pointer;
}

.fast-list li:hover {
color: var(--accent-gold);
}

.fast-list li i {
margin-right: 8px;
color: var(--accent-amber);
font-size: 0.7rem;
}

.testimonial-section {
background: linear-gradient(135deg, #14161B 0%, #0B0C0E 100%);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
}

.testimonial-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 36px 28px;
box-shadow: var(--shadow-card);
}

.testimonial-stars {
color: var(--accent-gold);
margin-bottom: 16px;
font-size: 1.1rem;
}

.testimonial-text {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author {
font-weight: 700;
color: var(--accent-gold);
font-size: 0.95rem;
}

.cta-section {
padding: 100px 0 120px;
background: var(--primary-bg);
position: relative;
text-align: center;
}

.cta-box {
background: linear-gradient(145deg, var(--secondary-bg), #1e1d28);
border: 1px solid var(--accent-gold);
border-radius: 24px;
padding: 64px 48px;
max-width: 800px;
margin: 0 auto;
box-shadow: 0 12px 36px rgba(212, 175, 55, 0.2);
}

.cta-box h2 {
font-size: 2.4rem;
font-weight: 800;
color: var(--text-white);
margin-bottom: 18px;
}

.cta-box p {
font-size: 1.05rem;
color: var(--text-muted);
margin-bottom: 36px;
}

.fab-floating {
position: fixed;
left: 24px;
bottom: 80px;
z-index: 999;
width: 56px;
height: 56px;
background: linear-gradient(135deg, #D4AF37, #B45309);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
color: #0B0C0E;
box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
cursor: pointer;
transition: all 0.3s;
border: 2px solid #F59E0B;
}

.fab-floating:hover {
transform: scale(1.1);
box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

.fab-floating:active {
transform: scale(0.95);
}

footer {
background: var(--secondary-bg);
border-top: 1px solid var(--border-subtle);
padding: 56px 0 32px;
}

.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}

.footer-info h3 {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent-gold);
margin-bottom: 14px;
}

.footer-info p {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.7;
}

.footer-links h4 {
font-size: 1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 18px;
}

.footer-links ul {
list-style: none;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
font-size: 0.9rem;
color: var(--text-muted);
transition: color 0.2s;
}

.footer-links a:hover {
color: var(--accent-gold);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.06);
padding-top: 24px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
font-size: 0.85rem;
color: var(--text-soft);
}

.trust-badge {
display: flex;
gap: 24px;
align-items: center;
}

@media (max-width: 1024px) {
.hero-inner {
grid-template-columns: 1fr;
}
.news-layout {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.nav-links, .auth-buttons {
display: none;
}
.mobile-menu-btn {
display: block;
}
.hero-text h1 {
font-size: 2.2rem;
}
.section-title {
font-size: 1.8rem;
}
.countdown-grid {
flex-direction: column;
}
.footer-grid {
grid-template-columns: 1fr;
}
.news-item {
flex-direction: column;
}
.news-thumb {
width: 100%;
height: 160px;
}
}

.mobile-menu {
display: none;
flex-direction: column;
position: absolute;
top: 72px;
left: 0;
width: 100%;
background: var(--secondary-bg);
padding: 20px 24px;
border-top: 1px solid var(--border-subtle);
}

.mobile-menu.open {
display: flex;
}

.mobile-menu a {
padding: 12px 0;
font-weight: 500;
font-size: 1rem;
border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* roulang page: article */
:root {
            --primary-bg: #0B0C0E;
            --secondary-bg: #14161B;
            --accent-gold: #D4AF37;
            --accent-amber: #B45309;
            --text-white: #F5F5F7;
            --text-muted: #CBD5E1;
            --text-soft: #A8A29E;
            --border-subtle: rgba(212, 175, 55, 0.15);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11,12,14,0.92);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background 0.3s;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
        }
        .logo i {
            font-size: 1.8rem;
            color: var(--accent-amber);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
            transition: color 0.2s;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 32px;
        }
        .btn-outline {
            padding: 10px 22px;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            background: transparent;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        .btn-solid {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            border: none;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
        }
        .btn-solid:hover {
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .article-hero {
            padding-top: 120px;
            padding-bottom: 60px;
            background: linear-gradient(135deg, #0B0C0E 0%, #1a1f2b 50%, #0d1015 100%);
            border-bottom: 1px solid var(--border-subtle);
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: var(--text-soft);
            margin-bottom: 32px;
        }
        .breadcrumb a {
            color: var(--accent-gold);
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--accent-amber);
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta i {
            color: var(--accent-gold);
        }
        .category-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(212, 175, 55, 0.12);
            color: var(--accent-gold);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            border: 1px solid var(--border-subtle);
        }
        .article-content-area {
            padding: 60px 0;
        }
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 60px;
            align-items: start;
        }
        .article-body {
            max-width: 720px;
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-white);
            margin-bottom: 24px;
        }
        .article-body .content-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.75;
        }
        .article-body .content-text h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
            margin-top: 48px;
            margin-bottom: 16px;
        }
        .article-body .content-text h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-white);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article-body .content-text p {
            margin-bottom: 18px;
        }
        .article-body .content-text ul,
        .article-body .content-text ol {
            margin-bottom: 18px;
            padding-left: 24px;
            color: var(--text-muted);
        }
        .article-body .content-text li {
            margin-bottom: 8px;
        }
        .article-body .content-text img {
            border-radius: var(--radius);
            margin: 24px 0;
            box-shadow: var(--shadow-card);
        }
        .article-body .content-text blockquote {
            border-left: 4px solid var(--accent-gold);
            padding-left: 20px;
            font-style: italic;
            color: var(--text-soft);
            margin: 24px 0;
        }
        .article-sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-card {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow-card);
            margin-bottom: 28px;
        }
        .sidebar-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 16px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 12px;
        }
        .sidebar-card ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .sidebar-card ul li a:hover {
            color: var(--accent-gold);
        }
        .gift-cta-box {
            background: linear-gradient(145deg, var(--secondary-bg), #1a1d24);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 28px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .not-found-section {
            padding: 100px 0;
            text-align: center;
        }
        .not-found-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-white);
        }
        .not-found-section p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }
        .not-found-section a {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            border-radius: 24px;
            font-weight: 700;
            transition: all 0.3s;
        }
        .not-found-section a:hover {
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }
        .share-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
        }
        .share-bar span {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .share-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        .share-btn:hover {
            color: var(--accent-gold);
            border-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }
        .trending-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 2;
        }
        .author-box {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 20px;
            margin-top: 40px;
        }
        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-bg);
            flex-shrink: 0;
        }
        footer {
            background: var(--secondary-bg);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-info h3 {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }
        .footer-info p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 16px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .footer-links ul li a:hover {
            color: var(--accent-gold);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 30px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.85rem;
            color: var(--text-soft);
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        @media (max-width: 1024px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .article-sidebar {
                position: static;
                top: auto;
            }
            .article-body {
                max-width: 100%;
            }
            .article-body h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                width: 100%;
                background: rgba(11,12,14,0.98);
                backdrop-filter: blur(18px);
                padding: 24px;
                gap: 20px;
                border-bottom: 1px solid var(--border-subtle);
            }
            .nav-links.open {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .auth-buttons {
                margin-left: auto;
                margin-right: 16px;
            }
            .btn-outline, .btn-solid {
                padding: 8px 18px;
                font-size: 0.8rem;
            }
            .article-body h1 {
                font-size: 1.6rem;
            }
            .article-body .content-text h2 {
                font-size: 1.3rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .trust-badge {
                justify-content: center;
            }
        }
        @media (max-width: 520px) {
            .header-inner {
                height: 64px;
            }
            .logo {
                font-size: 1.2rem;
            }
            .auth-buttons {
                gap: 8px;
            }
            .btn-outline, .btn-solid {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
        }

/* roulang page: category1 */
:root {
--primary-bg: #0B0C0E;
--secondary-bg: #14161B;
--accent-gold: #D4AF37;
--accent-amber: #B45309;
--text-white: #F5F5F7;
--text-muted: #CBD5E1;
--text-soft: #A8A29E;
--border-subtle: rgba(212, 175, 55, 0.15);
--shadow-card: 0 4px 24px rgba(0,0,0,0.4);
--radius: 16px;
}
body {
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--primary-bg);
color: var(--text-white);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
margin: 0;
padding: 0;
}
*, *::before, *::after {
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.3s;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(11,12,14,0.94);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.5rem;
color: var(--accent-gold);
letter-spacing: -0.3px;
}
.logo i {
font-size: 1.8rem;
color: var(--accent-amber);
}
nav {
display: flex;
align-items: center;
}
.nav-links {
display: flex;
list-style: none;
gap: 32px;
margin: 0;
padding: 0;
}
.nav-links a {
font-weight: 500;
font-size: 0.95rem;
color: var(--text-muted);
padding: 8px 0;
position: relative;
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--accent-gold);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--accent-gold);
transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}
.auth-buttons {
display: flex;
align-items: center;
gap: 14px;
margin-left: 32px;
}
.btn-outline {
padding: 10px 22px;
border: 1.5px solid var(--accent-gold);
color: var(--accent-gold);
background: transparent;
border-radius: 24px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
}
.btn-outline:hover {
background: var(--accent-gold);
color: var(--primary-bg);
}
.btn-solid {
padding: 10px 24px;
background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
color: var(--primary-bg);
border: none;
border-radius: 24px;
font-weight: 700;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}
.btn-solid:hover {
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
transform: translateY(-1px);
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--text-white);
font-size: 1.8rem;
cursor: pointer;
}
section {
padding: 80px 0;
}
.hero-inner {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.hero-text h1 {
font-size: 3rem;
font-weight: 800;
line-height: 1.15;
color: var(--text-white);
margin-bottom: 24px;
}
.hero-text p {
font-size: 1.15rem;
color: var(--text-muted);
margin-bottom: 36px;
line-height: 1.7;
}
.hero-image {
position: relative;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-card);
}
.hero-image img {
width: 100%;
object-fit: cover;
}
.section-label {
display: inline-block;
padding: 6px 16px;
background: rgba(212, 175, 55, 0.12);
color: var(--accent-gold);
border-radius: 20px;
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 16px;
border: 1px solid var(--border-subtle);
}
.section-title {
font-size: 2.3rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 16px;
line-height: 1.25;
}
.section-desc {
font-size: 1.05rem;
color: var(--text-muted);
margin-bottom: 48px;
max-width: 680px;
line-height: 1.7;
}
.highlights-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}
.highlight-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 40px 32px;
transition: all 0.3s;
box-shadow: var(--shadow-card);
position: relative;
overflow: hidden;
}
.highlight-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 0;
background: linear-gradient(to bottom, var(--accent-gold), var(--accent-amber));
transition: height 0.4s;
}
.highlight-card:hover::before {
height: 100%;
}
.highlight-card:hover {
transform: translateY(-6px);
border-color: var(--accent-gold);
}
.highlight-card h3 {
font-size: 1.35rem;
font-weight: 700;
margin-bottom: 12px;
color: var(--text-white);
}
.highlight-card p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.65;
}
.provider-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 24px;
}
.provider-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 28px 20px;
text-align: center;
transition: all 0.3s;
}
.provider-card:hover {
border-color: var(--accent-gold);
box-shadow: 0 8px 28px rgba(212, 175, 55, 0.15);
transform: translateY(-4px);
}
.provider-card i {
font-size: 2.5rem;
color: var(--accent-gold);
margin-bottom: 12px;
}
.provider-card h4 {
font-weight: 700;
font-size: 1.1rem;
margin-bottom: 6px;
}
.provider-card span {
font-size: 0.85rem;
color: var(--text-soft);
}
.game-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px;
}
.game-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.3s;
box-shadow: var(--shadow-card);
}
.game-card:hover {
transform: translateY(-6px);
border-color: var(--accent-gold);
box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}
.game-card-img {
height: 160px;
overflow: hidden;
position: relative;
}
.game-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.game-card-body {
padding: 20px 16px;
}
.game-card-body h4 {
font-weight: 700;
font-size: 1.05rem;
margin-bottom: 8px;
}
.game-card-body p {
font-size: 0.85rem;
color: var(--text-muted);
line-height: 1.5;
}
.tag-hot {
position: absolute;
top: 10px;
right: 10px;
background: #DC2626;
color: white;
padding: 4px 12px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 700;
z-index: 2;
}
.btn-small {
padding: 10px 24px;
background: var(--accent-gold);
color: #0B0C0E;
border: none;
border-radius: 24px;
font-weight: 700;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.3s;
display: inline-block;
}
.btn-small:hover {
background: var(--accent-amber);
transform: translateY(-2px);
}
.cta-section {
background: linear-gradient(180deg, #14161B 0%, #0B0C0E 100%);
border-top: 1px solid var(--border-subtle);
border-bottom: 1px solid var(--border-subtle);
padding: 64px 0;
}
.cta-inner {
text-align: center;
}
.cta-inner h2 {
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 16px;
}
.cta-inner p {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 32px;
}
.cta-inner .btn-solid {
padding: 14px 40px;
font-size: 1.05rem;
}
footer {
background: var(--primary-bg);
border-top: 1px solid var(--border-subtle);
padding: 64px 0 32px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 48px;
margin-bottom: 40px;
}
.footer-info h3 {
font-size: 1.6rem;
font-weight: 700;
color: var(--accent-gold);
margin-bottom: 16px;
}
.footer-info p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.7;
}
.footer-links h4 {
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 16px;
color: var(--text-white);
}
.footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links ul li {
margin-bottom: 10px;
}
.footer-links ul li a {
font-size: 0.9rem;
color: var(--text-muted);
transition: color 0.3s;
}
.footer-links ul li a:hover {
color: var(--accent-gold);
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
padding-top: 32px;
border-top: 1px solid var(--border-subtle);
font-size: 0.9rem;
color: var(--text-soft);
}
.trust-badge {
display: flex;
align-items: center;
gap: 6px;
}
.FAB {
position: fixed;
left: 16px;
bottom: 96px;
z-index: 50;
width: 56px;
height: 56px;
background: linear-gradient(145deg, var(--secondary-bg), #1a1d24);
border: 2px solid var(--accent-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
transition: all 0.3s;
opacity: 0.8;
}
.FAB:hover {
opacity: 1;
transform: scale(1.1);
}
.FAB i {
font-size: 1.6rem;
color: var(--accent-gold);
}
.FAB .badge-dot {
position: absolute;
top: 4px;
right: 4px;
width: 13px;
height: 13px;
background: #DC2626;
border-radius: 50%;
border: 2px solid white;
}
@media (max-width: 1024px) {
.nav-links {
gap: 20px;
}
.auth-buttons {
margin-left: 16px;
}
.hero-inner {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-text h1 {
font-size: 2.4rem;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.mobile-menu-btn {
display: block;
}
.nav-links {
display: none;
position: absolute;
top: 72px;
left: 0;
width: 100%;
background: rgba(11,12,14,0.98);
flex-direction: column;
gap: 0;
padding: 16px 0;
border-bottom: 1px solid var(--border-subtle);
}
.nav-links.active {
display: flex;
}
.nav-links a {
padding: 14px 24px;
display: block;
}
.auth-buttons {
margin-left: auto;
}
.hero-text h1 {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
}

/* roulang page: category2 */
:root {
--primary-bg: #0B0C0E;
--secondary-bg: #14161B;
--accent-gold: #D4AF37;
--accent-amber: #B45309;
--text-white: #F5F5F7;
--text-muted: #CBD5E1;
--text-soft: #A8A29E;
--border-subtle: rgba(212, 175, 55, 0.15);
--shadow-card: 0 4px 24px rgba(0,0,0,0.4);
--radius: 16px;
}
body {
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--primary-bg);
color: var(--text-white);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
margin: 0;
padding: 0;
box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.3s;
}
img {
max-width: 100%;
height: auto;
display: block;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(11,12,14,0.92);
backdrop-filter: blur(18px);
border-bottom: 1px solid var(--border-subtle);
transition: background 0.3s;
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.5rem;
color: var(--accent-gold);
letter-spacing: -0.3px;
}
.logo i {
font-size: 1.8rem;
color: var(--accent-amber);
}
nav {
display: flex;
align-items: center;
}
.nav-links {
display: flex;
list-style: none;
gap: 32px;
margin: 0;
padding: 0;
}
.nav-links a {
font-weight: 500;
font-size: 0.95rem;
color: var(--text-muted);
padding: 8px 0;
position: relative;
transition: color 0.2s;
display: inline-block;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--accent-gold);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--accent-gold);
transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}
.auth-buttons {
display: flex;
align-items: center;
gap: 16px;
margin-left: 32px;
}
.btn-outline {
padding: 10px 22px;
border: 1.5px solid var(--accent-gold);
color: var(--accent-gold);
background: transparent;
border-radius: 24px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
white-space: nowrap;
}
.btn-outline:hover {
background: var(--accent-gold);
color: var(--primary-bg);
}
.btn-solid {
padding: 10px 24px;
background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
color: var(--primary-bg);
border: none;
border-radius: 24px;
font-weight: 700;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
white-space: nowrap;
}
.btn-solid:hover {
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
transform: translateY(-1px);
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--text-white);
font-size: 1.8rem;
cursor: pointer;
}
section {
padding: 80px 0;
}
.section-label {
display: inline-block;
padding: 6px 16px;
background: rgba(212, 175, 55, 0.12);
color: var(--accent-gold);
border-radius: 20px;
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 16px;
border: 1px solid var(--border-subtle);
}
.section-title {
font-size: 2.3rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 16px;
line-height: 1.25;
}
.section-desc {
font-size: 1.05rem;
color: var(--text-muted);
margin-bottom: 48px;
max-width: 680px;
line-height: 1.7;
}
.category-hero {
padding-top: 140px;
padding-bottom: 100px;
position: relative;
background: linear-gradient(135deg, #0B0C0E 0%, #1a1f2b 50%, #0d1015 100%);
overflow: hidden;
}
.category-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('/assets/images/backpic/back-3.jpg') center/cover no-repeat;
opacity: 0.15;
z-index: 0;
}
.hero-inner {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.hero-text h1 {
font-size: 3rem;
font-weight: 800;
line-height: 1.15;
color: var(--text-white);
margin-bottom: 24px;
}
.hero-text p {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 32px;
line-height: 1.7;
}
.hero-image {
position: relative;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-card);
}
.hero-image img {
width: 100%;
object-fit: cover;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
}
.feature-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 36px 28px;
transition: all 0.3s;
box-shadow: var(--shadow-card);
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 0;
background: linear-gradient(to bottom, var(--accent-gold), var(--accent-amber));
transition: height 0.4s;
}
.feature-card:hover::before {
height: 100%;
}
.feature-card:hover {
transform: translateY(-6px);
border-color: var(--accent-gold);
}
.feature-card i {
font-size: 2.2rem;
color: var(--accent-gold);
margin-bottom: 18px;
}
.feature-card h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 10px;
color: var(--text-white);
}
.feature-card p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
}
.game-list-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 28px;
}
.game-item {
background: linear-gradient(145deg, #14161B, #1a1d24);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 24px;
display: flex;
align-items: center;
gap: 20px;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.game-item:hover {
border-color: var(--accent-gold);
box-shadow: 0 8px 28px rgba(212, 175, 55, 0.2);
transform: translateY(-4px);
}
.game-item .badge-hot {
position: absolute;
top: 12px;
right: 12px;
background: #DC2626;
color: white;
font-size: 0.7rem;
font-weight: 700;
padding: 4px 10px;
border-radius: 12px;
text-transform: uppercase;
}
.game-item img {
width: 80px;
height: 80px;
border-radius: 12px;
object-fit: cover;
flex-shrink: 0;
}
.game-item h4 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 4px;
}
.game-item span {
font-size: 0.85rem;
color: var(--text-soft);
}
.scene-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 36px;
align-items: center;
}
.scene-text h3 {
font-size: 1.6rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 16px;
}
.scene-text ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.scene-text li {
color: var(--text-muted);
font-size: 0.95rem;
line-height: 1.6;
padding-left: 28px;
position: relative;
}
.scene-text li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-gold);
font-weight: 700;
}
.scene-image {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-card);
}
.cta-strip {
background: linear-gradient(135deg, var(--secondary-bg), #1a1d24);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-strip::before {
content: '';
position: absolute;
inset: 0;
background: url('/assets/images/backpic/back-5.jpg') center/cover no-repeat;
opacity: 0.08;
}
.cta-strip h2 {
font-size: 2rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 14px;
position: relative;
}
.cta-strip p {
font-size: 1.05rem;
color: var(--text-muted);
margin-bottom: 32px;
position: relative;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 28px;
margin-top: 28px;
}
.info-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
padding: 30px;
transition: all 0.3s;
position: relative;
}
.info-card:hover {
border-color: var(--accent-gold);
}
.info-card h4 {
font-size: 1.1rem;
font-weight: 700;
color: var(--accent-gold);
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 10px;
}
.info-card p {
font-size: 0.93rem;
color: var(--text-muted);
line-height: 1.6;
}
.post-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 28px;
}
.post-card {
background: var(--secondary-bg);
border: 1px solid var(--border-subtle);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.3s;
box-shadow: var(--shadow-card);
display: flex;
flex-direction: column;
}
.post-card:hover {
transform: translateY(-4px);
border-color: var(--accent-gold);
}
.post-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.post-card-body {
padding: 20px 22px;
flex: 1;
display: flex;
flex-direction: column;
}
.post-card-body .post-cat {
font-size: 0.75rem;
font-weight: 600;
color: var(--accent-gold);
text-transform: uppercase;
margin-bottom: 6px;
}
.post-card-body h5 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 10px;
line-height: 1.35;
}
.post-card-body .post-excerpt {
font-size: 0.88rem;
color: var(--text-muted);
line-height: 1.55;
flex: 1;
}
.post-meta {
display: flex;
align-items: center;
gap: 14px;
font-size: 0.78rem;
color: var(--text-soft);
margin-top: 14px;
}
footer {
background: var(--secondary-bg);
border-top: 1px solid var(--border-subtle);
padding: 60px 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-info h3 {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent-gold);
margin-bottom: 14px;
}
.footer-info p {
font-size: 0.93rem;
color: var(--text-muted);
line-height: 1.7;
}
.footer-links h4 {
font-size: 1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 14px;
}
.footer-links ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.footer-links a {
font-size: 0.9rem;
color: var(--text-muted);
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--accent-gold);
}
.footer-bottom {
border-top: 1px solid var(--border-subtle);
padding-top: 24px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 18px;
font-size: 0.85rem;
color: var(--text-soft);
}
.trust-badge {
display: flex;
align-items: center;
gap: 12px;
}
@media (max-width: 1024px) {
.hero-inner {
grid-template-columns: 1fr;
text-align: center;
}
.hero-text p {
margin-left: auto;
margin-right: auto;
}
.hero-cta {
justify-content: center;
}
.hero-image {
max-width: 500px;
margin: 0 auto;
}
.section-title {
font-size: 2rem;
}
.category-hero {
padding-top: 120px;
padding-bottom: 60px;
}
.nav-links {
gap: 18px;
}
.auth-buttons {
margin-left: 18px;
}
}
@media (max-width: 768px) {
.header-inner {
height: 64px;
}
.nav-links {
display: none;
}
.mobile-menu-btn {
display: block;
}
.auth-buttons {
margin-left: auto;
gap: 10px;
}
.btn-outline, .btn-solid {
padding: 8px 16px;
font-size: 0.82rem;
}
.hero-text h1 {
font-size: 2.2rem;
}
.section-title {
font-size: 1.7rem;
}
.feature-grid, .game-list-grid, .scene-grid, .post-grid {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
section {
padding: 50px 0;
}
.cta-strip {
padding: 32px 20px;
}
}
@media (max-width: 520px) {
.container {
padding: 0 16px;
}
.hero-text h1 {
font-size: 1.8rem;
}
.section-title {
font-size: 1.4rem;
}
.auth-buttons {
gap: 8px;
}
.btn-outline, .btn-solid {
padding: 7px 12px;
font-size: 0.78rem;
border-radius: 18px;
}
}

/* roulang page: category3 */
:root {
            --primary-bg: #0B0C0E;
            --secondary-bg: #14161B;
            --accent-gold: #D4AF37;
            --accent-amber: #B45309;
            --text-white: #F5F5F7;
            --text-muted: #CBD5E1;
            --text-soft: #A8A29E;
            --border-subtle: rgba(212, 175, 55, 0.15);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            margin: 0;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11,12,14,0.92);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background 0.3s;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
        }
        .logo i {
            font-size: 1.8rem;
            color: var(--accent-amber);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            padding: 0;
            margin: 0;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
            transition: color 0.2s;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 32px;
        }
        .btn-outline {
            padding: 10px 22px;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            background: transparent;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        .btn-solid {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            border: none;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
        }
        .btn-solid:hover {
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        section {
            padding: 80px 0;
        }
        .page-header {
            padding-top: 120px;
            padding-bottom: 60px;
            background: linear-gradient(135deg, #0B0C0E 0%, #1a1f2b 50%, #0d1015 100%);
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/images/backpic/back-4.jpg') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }
        .page-header-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .page-header-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-white);
            margin-bottom: 20px;
        }
        .page-header-text p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .page-header-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
        }
        .page-header-image img {
            width: 100%;
            object-fit: cover;
        }
        .stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 24px;
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.85rem;
            margin-right: 12px;
            margin-bottom: 12px;
        }
        .game-table-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .game-table-card {
            background: linear-gradient(145deg, #14161B, #1c1f2a);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .game-table-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(212, 175, 55, 0.1);
        }
        .game-table-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-white);
        }
        .game-table-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .dealer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }
        .dealer-card {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
        }
        .dealer-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }
        .dealer-card-img {
            height: 180px;
            overflow: hidden;
        }
        .dealer-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .dealer-card-body {
            padding: 20px;
        }
        .dealer-card-body h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-white);
            margin-bottom: 6px;
        }
        .dealer-card-body p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }
        .step-item {
            position: relative;
            padding-left: 56px;
            border-left: 2px solid rgba(212, 175, 55, 0.3);
        }
        .step-number {
            position: absolute;
            left: -16px;
            top: 0;
            width: 32px;
            height: 32px;
            background: var(--accent-gold);
            color: #0B0C0E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
        }
        .step-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        .step-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .benefit-item {
            background: linear-gradient(145deg, #14161B, #1a1d24);
            border: 1px solid rgba(212, 175, 55, 0.12);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: all 0.3s;
        }
        .benefit-item:hover {
            border-color: var(--accent-gold);
        }
        .benefit-item i {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin-top: 2px;
        }
        .benefit-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 4px;
        }
        .benefit-item p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        .news-card {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
        }
        .news-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }
        .news-card-img {
            height: 180px;
            overflow: hidden;
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-card-body {
            padding: 20px;
        }
        .news-card-body h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card-body p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .btn-small {
            padding: 10px 24px;
            background: var(--accent-gold);
            color: #0B0C0E;
            border: none;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-small:hover {
            background: var(--accent-amber);
            transform: translateY(-2px);
        }
        .section-label {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
            line-height: 1.25;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 680px;
            line-height: 1.7;
        }
        footer {
            background: #090A0D;
            border-top: 1px solid rgba(212, 175, 55, 0.12);
            padding: 64px 0 32px;
            color: var(--text-muted);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-info h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }
        .footer-info p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-size: 0.85rem;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        @media (max-width: 1024px) {
            .page-header-inner {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            .page-header-text h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .auth-buttons {
                margin-left: auto;
                gap: 10px;
            }
            .btn-outline {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            .btn-solid {
                padding: 8px 18px;
                font-size: 0.8rem;
            }
            .page-header {
                padding-top: 100px;
                padding-bottom: 40px;
            }
            .page-header-text h1 {
                font-size: 1.8rem;
            }
            section {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                height: 60px;
            }
            .logo {
                font-size: 1.2rem;
            }
            .logo i {
                font-size: 1.4rem;
            }
            .page-header-text h1 {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .btn-outline {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
            .btn-solid {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
        }

/* roulang page: category4 */
:root {
            --primary-bg: #0B0C0E;
            --secondary-bg: #14161B;
            --accent-gold: #D4AF37;
            --accent-amber: #B45309;
            --text-white: #F5F5F7;
            --text-muted: #CBD5E1;
            --text-soft: #A8A29E;
            --border-subtle: rgba(212, 175, 55, 0.15);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius: 16px;
            --wine: #8B1A1A;
            --deep-crimson: #2B0404;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11,12,14,0.94);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
        }
        .logo i {
            font-size: 1.8rem;
            color: var(--accent-amber);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
            transition: color 0.2s;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 32px;
        }
        .btn-outline {
            padding: 10px 22px;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            background: transparent;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-bg);
        }
        .btn-solid {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            border: none;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
            white-space: nowrap;
        }
        .btn-solid:hover {
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        section {
            padding: 80px 0;
        }
        .page-hero {
            padding-top: 150px;
            padding-bottom: 90px;
            background: linear-gradient(135deg, #0B0C0E 0%, #1a0d14 40%, #0d0a10 100%);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/images/backpic/back-4.jpg') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .separator {
            color: var(--accent-gold);
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-content .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 640px;
            line-height: 1.7;
        }
        .trust-checks {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 40px;
        }
        .trust-check-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }
        .trust-check-item i {
            color: #22c55e;
            font-size: 1.2rem;
        }
        .hero-cta-row {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }
        .section-label {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(212, 175, 55, 0.12);
            color: var(--accent-gold);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 16px;
            border: 1px solid var(--border-subtle);
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 16px;
            line-height: 1.25;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 48px;
            max-width: 680px;
            line-height: 1.7;
        }
        .game-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .game-card {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.35s;
            box-shadow: var(--shadow-card);
            position: relative;
        }
        .game-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 12px 36px rgba(212, 175, 55, 0.18);
        }
        .game-card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .game-card:hover .game-card-image img {
            transform: scale(1.08);
        }
        .game-card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent-gold);
            color: var(--primary-bg);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 2;
        }
        .game-card-body {
            padding: 24px 20px;
        }
        .game-card-body h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        .game-card-body p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .game-card-stats {
            display: flex;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--text-soft);
        }
        .game-card-stats i {
            color: var(--accent-gold);
            margin-right: 4px;
        }
        .scenario-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .scenario-text h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-white);
        }
        .scenario-text p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .scenario-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .scenario-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .scenario-list li i {
            color: var(--accent-gold);
            margin-top: 4px;
            flex-shrink: 0;
        }
        .scenario-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 36px;
            counter-reset: step;
        }
        .process-item {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 32px 24px;
            position: relative;
            transition: all 0.3s;
        }
        .process-item:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-card);
        }
        .process-number {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .process-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        .process-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .faq-section {
            background: linear-gradient(180deg, #14161B 0%, #0B0C0E 100%);
        }
        .faq-grid {
            display: grid;
            gap: 16px;
            max-width: 800px;
        }
        .faq-item {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 24px 28px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: var(--accent-gold);
        }
        .faq-question {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-white);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question i {
            color: var(--accent-gold);
            transition: transform 0.3s;
        }
        .faq-answer {
            margin-top: 12px;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-bg), #1a0d14, #0d1015);
            text-align: center;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/images/backpic/back-3.jpg') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-large {
            padding: 16px 44px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-bg);
            border: none;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
            display: inline-block;
        }
        .btn-large:hover {
            box-shadow: 0 10px 32px rgba(212, 175, 55, 0.5);
            transform: translateY(-2px);
        }
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .news-card {
            background: var(--secondary-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
        }
        .news-card-image {
            height: 180px;
            overflow: hidden;
        }
        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .news-card:hover .news-card-image img {
            transform: scale(1.05);
        }
        .news-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card-body .news-date {
            font-size: 0.8rem;
            color: var(--text-soft);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-card-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card-body h3 a {
            color: var(--text-white);
        }
        .news-card-body h3 a:hover {
            color: var(--accent-gold);
        }
        .news-card-body p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
            flex: 1;
        }
        .news-card-body .news-tag {
            display: inline-block;
            margin-top: 12px;
            padding: 4px 12px;
            background: rgba(212, 175, 55, 0.12);
            color: var(--accent-gold);
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 600;
            align-self: flex-start;
        }
        .text-center {
            text-align: center;
        }
        .mb-48 {
            margin-bottom: 48px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        footer {
            background: #0a0b0d;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-info h3 {
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }
        .footer-info p {
            line-height: 1.7;
            font-size: 0.85rem;
        }
        .footer-links h4 {
            color: var(--text-white);
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li a {
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .footer-links ul li a:hover {
            color: var(--accent-gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.8rem;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        @media (max-width: 1024px) {
            .scenario-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                width: 100%;
                background: rgba(11,12,14,0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px 24px;
                gap: 0;
                border-bottom: 1px solid var(--border-subtle);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                padding: 12px 0;
                border-bottom: 1px solid rgba(212, 175, 55, 0.08);
            }
            .mobile-menu-btn {
                display: block;
            }
            .auth-buttons {
                margin-left: 0;
                gap: 10px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .game-card-grid {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .cta-section h2 {
                font-size: 1.8rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .trust-checks {
                flex-direction: column;
                gap: 12px;
            }
        }
        @media (max-width: 520px) {
            .header-inner {
                padding: 0 12px;
            }
            .logo {
                font-size: 1.2rem;
            }
            .auth-buttons .btn-outline,
            .auth-buttons .btn-solid {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .page-hero {
                padding-top: 120px;
                padding-bottom: 60px;
            }
            section {
                padding: 50px 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
