/* ========================================
   {{brand}} - Casino Template Styles
   Version: 1.0
   ======================================== */

/* CSS Variables */
:root {
    --primary: #2E7D32;
    --primary-dark: {{primary_color_dark}};
    --secondary: #1565C0;
    --accent: #ffd700;
    --bg-dark: #0a0a1a;
    --bg-card: #12122a;
    --bg-light: #1a1a3a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Container */
.m-nl3vg4 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.x-huix0l {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.el-mzqaq3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.el-nkr57b {
    display: flex;
    align-items: center;
    gap: 12px;
}

.el-nkr57b img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.m-id63mr {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.el-kidbyi {
    display: flex;
    align-items: center;
    gap: 8px;
}

.js-d5r298 {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.js-d5r298:hover,
.js-d5r298.s-lslevo {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.js-qy1crt {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s-tig9zj {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.4);
    transition: var(--transition);
}

.s-tig9zj:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary), 0.5);
}

.js-eh94jr {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.js-eh94jr span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Breadcrumb */
._dg9c5v {
    padding: 100px 0 20px;
    background: var(--bg-dark);
    font-size: 14px;
    color: var(--text-muted);
}

._dg9c5v a {
    color: var(--text-secondary);
}

._dg9c5v a:hover {
    color: var(--primary);
}

/* ========================================
   Buttons
   ======================================== */
.is-wru5v1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.is-te5pso {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.is-te5pso:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.js-iy5j2i {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.js-iy5j2i:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.el-x49f9e {
    background: #fff;
    color: var(--bg-dark);
}

.el-x49f9e:hover {
    background: var(--accent);
}

.c-nrw4po {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.c-nrw4po:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.el-vmk5bp {
    padding: 10px 20px;
    font-size: 14px;
}

.n9ld88 {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.w0ko4j {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.s-phbq8c {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.s-phbq8c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.s-phbq8c::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.5) 0%, rgba(10, 10, 26, 0.9) 100%);
}

.is-zdqhgh {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
}

.tk61ai {
    max-width: 700px;
}

.c-sz0nqr {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.js-oh51t7 {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.m-vhq6zg {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.el-rfhg8e {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.el-fbn74z {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 80px 0;
}

.m-o3q34y {
    text-align: center;
    margin-bottom: 48px;
}

._aljysk {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.js-ho7mpg {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.js-ho7mpg strong {
    color: var(--primary);
}

.is-hzk43d {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Stats Section
   ======================================== */
._v6p1c1 {
    background: var(--bg-card);
    padding: 60px 0;
}

.x-f22oqp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.x-xm7bi7 {
    text-align: center;
    padding: 24px;
}

.s-phrv69 {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.s-sxyxhf {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.js-c1k6na {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   About Section
   ======================================== */
.x-q2khdn {
    background: var(--bg-dark);
}

.x-zvnpgz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.s-nro689 p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.s-nro689 p strong {
    color: var(--primary);
}

.s-ruug5i {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.m-f66cca {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.el-xsorrm {
    font-size: 24px;
}

.x-nj7ft3 {
    position: relative;
}

.x-nj7ft3 img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.m-feheuj {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

._fq57at {
    font-size: 36px;
    font-weight: 800;
    display: block;
}

.c2e2k4 {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Games Section
   ======================================== */
.x-vecdk1 {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.ag35mh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.uqkwrm {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.uqkwrm:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.el-ypbfwt {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.el-ypbfwt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.uqkwrm:hover .el-ypbfwt img {
    transform: scale(1.1);
}

._sh9y9o {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

._png3oh {
    padding: 20px;
}

._png3oh h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

._png3oh p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.js-vl0jpt {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

/* ========================================
   Services Section
   ======================================== */
.s-au6ymt {
    background: var(--bg-dark);
}

.yo4us2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.s-zii6dz {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.s-zii6dz:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.x-g90bbl {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.s-h6nm2j {
    font-size: 18px;
    margin-bottom: 12px;
}

.el-kc9noz {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Bonus Section
   ======================================== */
.ui-vflgrp {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.x-v7em3n {
    font-size: 36px;
    margin-bottom: 16px;
}

.c-pmzcf3 {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.c-m56tsn {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.m-pz2dtk {
    text-align: center;
}

.s-fkdh2d {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.el-tojryo {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   Payment Section
   ======================================== */
.x-wkaljo {
    background: var(--bg-card);
}

.a92ako {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.m-o9cjie {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.m-o9cjie img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.m-o9cjie h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.m-o9cjie p {
    font-size: 14px;
    color: var(--text-secondary);
}

.el-di5dvs {
    display: flex;
    justify-content: center;
    gap: 48px;
}

._sspief {
    display: flex;
    align-items: center;
    gap: 16px;
}

.el-mkon6q {
    font-size: 32px;
}

._sspief h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

._sspief p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   License Section
   ======================================== */
.js-nlrl4g {
    background: var(--bg-dark);
}

.abws5m {
    display: flex;
    align-items: center;
    gap: 60px;
}

.js-ld0l2h h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.js-ld0l2h p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

._rd7v0y {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

._rd7v0y li {
    color: var(--text-secondary);
    font-size: 15px;
}

.s-i9tukl img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
}

/* ========================================
   Responsible Gaming Section
   ======================================== */
.is-a8h1lx {
    background: var(--bg-card);
}

.el-fi5sag > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cnzjh6 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.s-u61ncu {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

._qedcva {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.s-u61ncu h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.s-u61ncu p {
    font-size: 14px;
    color: var(--text-secondary);
}

.is-qvrbdu {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.is-qvrbdu a {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   Testimonials Section
   ======================================== */
.c-oj6400 {
    background: var(--bg-dark);
}

._k6zeiz {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ey3sbs {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.d9j6fw {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.d9j6fw img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.x-xnjwjf {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.ykxd1t {
    color: var(--accent);
    font-size: 14px;
}

.s-mxnlgh {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   Team Section
   ======================================== */
._nzumna {
    background: var(--bg-card);
}

.m-ob7xuj {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.is-h7qjvj {
    text-align: center;
}

.is-h7qjvj img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--primary);
}

.is-h7qjvj h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.is-h7qjvj p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Support Section
   ======================================== */
.yz2yja {
    background: var(--bg-dark);
}

._gnp3qa {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.c-n85bge {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
}

.ui-jy834i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.c-n85bge h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.c-n85bge p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ========================================
   FAQ Section
   ======================================== */
.is-fuc2od {
    background: var(--bg-card);
}

.m-mcylbh {
    max-width: 800px;
    margin: 0 auto;
}

.x-o5bhhw {
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.s-a4khkl {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.s-a4khkl:hover {
    background: rgba(255, 255, 255, 0.05);
}

.is-o06ezx {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
}

.x-o5bhhw.active .is-o06ezx {
    transform: rotate(45deg);
}

.x-z0n59a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.x-o5bhhw.active .x-z0n59a {
    max-height: 500px;
}

.x-z0n59a p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   News Section
   ======================================== */
.gkb3g1 {
    background: var(--bg-dark);
}

.x-nokeuh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.el-b2e4r7 {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.el-b2e4r7:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.s-zb3i53 {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.s-zb3i53 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.el-b2e4r7:hover .s-zb3i53 img {
    transform: scale(1.05);
}

.ee2pxk {
    padding: 20px;
}

.m-zqt22c {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

._ew6u62 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x-qcn545 {
    font-size: 14px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.m-uuzok4 {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   CTA Section
   ======================================== */
.x-f54i7f {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 80px 0;
}

.x-hvhbl5 h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.x-hvhbl5 h2 strong {
    color: var(--accent);
}

.x-hvhbl5 p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.ui-s6rm35 {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   App Section
   ======================================== */
.s-ngupif {
    background: var(--bg-card);
}

.wag97e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.ui-yvihil h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.ui-yvihil h2 strong {
    color: var(--primary);
}

.ui-yvihil > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.m-dhsyqv {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.m-dhsyqv span {
    font-size: 14px;
    color: var(--text-secondary);
}

.c-vrdjhp {
    display: flex;
    gap: 16px;
}

.is-sjii8o {
    text-align: center;
}

.is-sjii8o img {
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.is-sjii8o p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Footer
   ======================================== */
._a9unws {
    background: #050510;
    padding: 60px 0 30px;
}

.x-s98oxy {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.el-y6w2sk {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.el-y6w2sk img {
    width: 48px;
    height: 48px;
}

.el-y6w2sk span {
    font-size: 20px;
    font-weight: 700;
}

.el-y6w2sk p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ui-t6blae h4,
.x-snqcbj h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.ui-t6blae ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ui-t6blae a {
    font-size: 14px;
    color: var(--text-secondary);
}

.ui-t6blae a:hover {
    color: var(--primary);
}

.x-snqcbj p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.m-znf1z6 {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.is-t2n4af {
    display: flex;
    gap: 12px;
}

.is-t2n4af img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.m-znf1z6 p {
    font-size: 13px;
    color: var(--text-muted);
}

.m-znf1z6 a {
    color: var(--text-secondary);
}

.m-znf1z6 a:hover {
    color: var(--primary);
}

/* ========================================
   Floating Button
   ======================================== */
.el-arrej0 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.s-y9gsw2 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.ui-nk3iia {
    font-size: 20px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   Page Hero (Game Pages)
   ======================================== */
.ui-sckm27 {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
}

.c-q2c2t2 {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.c-q2c2t2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.c-q2c2t2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.7) 0%, var(--bg-dark) 100%);
}

.ui-sckm27 .m-nl3vg4 {
    position: relative;
    z-index: 1;
}

.el-amvino {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.el-amvino strong {
    color: var(--primary);
}

.ui-k0t0u5 {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.ui-ovc2rz {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.ui-ovc2rz span {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ========================================
   Game Introduction
   ======================================== */
.ui-x6e4di {
    background: var(--bg-dark);
}

.ui-i2s0kx {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
}

.el-lqxdsa h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.el-lqxdsa h2 strong {
    color: var(--primary);
}

.el-lqxdsa h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

.el-lqxdsa p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.el-lqxdsa p strong {
    color: var(--primary);
}

.m-ppjvvy {
    margin: 16px 0 32px;
}

.m-ppjvvy li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.m-ppjvvy li strong {
    color: var(--text-primary);
}

.c-atsk45 {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.s-m3jkui {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.s-m3jkui h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.js-pqn087 {
    width: 100%;
    margin-bottom: 24px;
}

.js-pqn087 tr {
    border-bottom: 1px solid var(--border-color);
}

.js-pqn087 td {
    padding: 12px 0;
    font-size: 14px;
}

.js-pqn087 td:first-child {
    color: var(--text-secondary);
}

.js-pqn087 td:last-child {
    text-align: right;
    font-weight: 600;
}

/* ========================================
   Article Page
   ======================================== */
.s-b24znk {
    padding: 120px 0 60px;
    background: var(--bg-dark);
}

.xy6khl {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.c-wmazzn {
    margin-bottom: 24px;
}

.el-rifyol {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 16px;
}

._nxp6rc {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.ui-yyrnxl {
    margin-bottom: 32px;
}

.ui-yyrnxl img {
    width: 100%;
    border-radius: var(--radius);
}

.x-kn2ilg {
    line-height: 1.9;
    color: var(--text-secondary);
}

.x-kn2ilg h2 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.x-kn2ilg h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.x-kn2ilg p {
    margin-bottom: 16px;
}

.x-kn2ilg strong {
    color: var(--primary);
}

.x-kn2ilg ul,
.x-kn2ilg ol {
    margin: 16px 0;
    padding-left: 24px;
}

.x-kn2ilg li {
    margin-bottom: 8px;
    list-style: disc;
}

.el-jpkm95 {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.is-w3i87y a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-card);
    border-radius: 50px;
    font-size: 13px;
    margin-left: 8px;
}

.dtdn7z a {
    margin-left: 12px;
    color: var(--primary);
}

.dtzev0 {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    text-align: center;
}

.dtzev0 h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.dtzev0 p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Sidebar */
.js-vzulzn {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.js-vzulzn h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.el-zo5kh4 li,
.x-lxih66 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.el-zo5kh4 li:last-child,
.x-lxih66 li:last-child {
    border-bottom: none;
}

.el-zo5kh4 a,
.x-lxih66 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.el-zo5kh4 a:hover,
.x-lxih66 a:hover {
    color: var(--primary);
}

.el-m5qisy {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
}

.el-m5qisy h3 {
    border-bottom: none;
    padding-bottom: 0;
}

.el-m5qisy p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ========================================
   News List Page
   ======================================== */
.s-pv7mow {
    padding: 140px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.x-lxih66 {
    background: var(--bg-dark);
    padding: 40px 0 80px;
}

/* ========================================
   How to Play
   ======================================== */
.el-w6lsq6 {
    background: var(--bg-card);
}

.ui-h9c9am {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gwwfrw {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    position: relative;
}

.ui-r31xpw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.gwwfrw h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.gwwfrw p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Tips Section
   ======================================== */
.ew98xv {
    background: var(--bg-dark);
}

.s-ajmjud > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.el-lbhv4n {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.c-ihra9j {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
}

.ui-dpciyz {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.c-ihra9j h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.c-ihra9j p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Popular Games Showcase */
._i50vcd {
    background: var(--bg-card);
}

.ui-hn1954 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nbqsei {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.nbqsei img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.nbqsei h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

.nbqsei p {
    font-size: 14px;
    color: var(--accent);
    padding: 0 16px 16px;
}

/* Strategy Content */
.m-uvjg3n > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.x-fuuu9z {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
}

.x-fuuu9z h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
}

.x-fuuu9z ul {
    margin-bottom: 24px;
}

.x-fuuu9z li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 15px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .el-kidbyi {
        display: none;
    }
    
    .js-eh94jr {
        display: flex;
    }
    
    .c-sz0nqr {
        font-size: 40px;
    }
    
    .x-f22oqp,
    .yo4us2,
    .a92ako,
    .cnzjh6,
    .m-ob7xuj,
    .ui-h9c9am,
    .el-lbhv4n,
    .ui-hn1954 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ag35mh,
    ._k6zeiz,
    ._gnp3qa,
    .x-nokeuh {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-zvnpgz,
    .ui-i2s0kx,
    .xy6khl {
        grid-template-columns: 1fr;
    }
    
    .x-s98oxy {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .abws5m,
    .wag97e {
        flex-direction: column;
        text-align: center;
    }
    
    .c-m56tsn,
    .el-di5dvs {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-sz0nqr {
        font-size: 32px;
    }
    
    .js-ho7mpg,
    .el-amvino {
        font-size: 28px;
    }
    
    .x-f22oqp,
    .yo4us2,
    .a92ako,
    .cnzjh6,
    .m-ob7xuj,
    .ag35mh,
    ._k6zeiz,
    ._gnp3qa,
    .x-nokeuh,
    .ui-h9c9am,
    .el-lbhv4n,
    .ui-hn1954 {
        grid-template-columns: 1fr;
    }
    
    .x-s98oxy {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .m-vhq6zg,
    .ui-s6rm35,
    .c-vrdjhp {
        flex-direction: column;
    }
    
    .m-znf1z6 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .el-arrej0 {
        bottom: 20px;
        right: 20px;
    }
    
    .is-n6rh9y {
        display: none;
    }
    
    .s-y9gsw2 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .s-ruug5i {
        grid-template-columns: 1fr;
    }
    
    ._rd7v0y {
        grid-template-columns: 1fr;
    }
    
    .ui-ovc2rz {
        flex-direction: column;
        gap: 12px;
    }
    
    ._nxp6rc {
        flex-direction: column;
        gap: 8px;
    }
    
    .el-jpkm95 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .x-huix0l,
    .el-arrej0,
    ._a9unws,
    .x-f54i7f {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
