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

/* CSS Variables */
:root {
    --primary: #AEEA00;
    --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 */
.is-sgop2a {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.ui-zi22wa {
    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);
}

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

.m-xmkwzs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.m-xmkwzs img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.js-x1wcdd {
    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;
}

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

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

.ui-lj0a2m:hover,
.ui-lj0a2m.el-m2tycb {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.c-ks11ko {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s-lo9sb2 {
    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-lo9sb2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary), 0.5);
}

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

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

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

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

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

/* ========================================
   Buttons
   ======================================== */
.m-dzk102 {
    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);
}

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

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

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

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

.x-eufpcv {
    background: #fff;
    color: var(--bg-dark);
}

.x-eufpcv:hover {
    background: var(--accent);
}

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

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

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

.js-j6sf3r {
    width: 100%;
}

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

.m-faoujj {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

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

.gzqrov {
    max-width: 700px;
}

.m-g9gwvb {
    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-q8mpvo {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.is-j4ukrt {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.x-ra3n9s {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.is-j9qeui {
    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;
}

.s-ui16mv {
    text-align: center;
    margin-bottom: 48px;
}

.x-u1hnrs {
    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;
}

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

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

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

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

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

.is-rrc204 {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

.c-fdm2cy p strong {
    color: var(--primary);
}

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

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

.ui-gztg85 {
    font-size: 24px;
}

.s-yotasg {
    position: relative;
}

.s-yotasg img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

.s-yv388a {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.m-ugu4qx:hover .s-yv388a img {
    transform: scale(1.1);
}

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

.el-q98gx7 {
    padding: 20px;
}

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

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

.m-j1hw9j {
    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
   ======================================== */
.x-qiv0al {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

.m-uzfykx {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

._zar6oy {
    text-align: center;
}

.c-qs796e {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.m-zeexcd {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.ui-ubhs0a img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.ui-ubhs0a h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

.x-yrn5ju {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.ui-m93t96 {
    font-size: 32px;
}

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

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

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

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

.el-bwu37v h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.js-jwh73c h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

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

.c-qbx14g a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

._hawhfc {
    text-align: center;
}

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

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

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

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

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

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

.el-wz80ps {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.m-o5btbb h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

.is-wvorax {
    max-width: 800px;
    margin: 0 auto;
}

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

.is-zw89ug {
    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);
}

.is-zw89ug:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.us6qh9.active .js-pwbo5m {
    transform: rotate(45deg);
}

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

.us6qh9.active .x-qeex4o {
    max-height: 500px;
}

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

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

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

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

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

.x-f19m4x {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

._t1qp1f:hover .x-f19m4x img {
    transform: scale(1.05);
}

._r7f424 {
    padding: 20px;
}

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

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

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

.js-cg0jnc {
    text-align: center;
    margin-top: 40px;
}

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

.el-bkiphq h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.el-bkiphq h2 strong {
    color: var(--accent);
}

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

.m-u5ft1x {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

.x-c2sq4x {
    display: flex;
    gap: 16px;
}

._wcrgse {
    text-align: center;
}

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

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

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

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

.s-i7ne8n {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-i7ne8n img {
    width: 48px;
    height: 48px;
}

.s-i7ne8n span {
    font-size: 20px;
    font-weight: 700;
}

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

.s-esd7al h4,
.is-z78a26 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.s-esd7al ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

.ui-qvq13m {
    display: flex;
    gap: 12px;
}

.ui-qvq13m img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

.ui-mauxw1 {
    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;
}

.is-snf419 {
    font-size: 20px;
}

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

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

.is-bz8bih {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

.is-drtmh1 .is-sgop2a {
    position: relative;
    z-index: 1;
}

.m-usyp7g {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.m-usyp7g strong {
    color: var(--primary);
}

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

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

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

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

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

.s-vij64v h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.s-vij64v h2 strong {
    color: var(--primary);
}

.s-vij64v h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.gxgu8f {
    margin: 16px 0 32px;
}

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

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

.m-triqg5 {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

.ui-ytdjli {
    width: 100%;
    margin-bottom: 24px;
}

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

.ui-ytdjli td {
    padding: 12px 0;
    font-size: 14px;
}

.ui-ytdjli td:first-child {
    color: var(--text-secondary);
}

.ui-ytdjli td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.x-am6ihz {
    margin-bottom: 24px;
}

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

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

.c-dkq9dn {
    margin-bottom: 32px;
}

.c-dkq9dn img {
    width: 100%;
    border-radius: var(--radius);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-c70ljb li:last-child,
._eg10f7 li:last-child {
    border-bottom: none;
}

.x-c70ljb a,
._eg10f7 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.x-c70ljb a:hover,
._eg10f7 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.m-pq2cab {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-ke6ih3 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .pfho99 {
        display: none;
    }
    
    .is-j1l5m0 {
        display: flex;
    }
    
    .m-g9gwvb {
        font-size: 40px;
    }
    
    .s-dj05nz,
    .ui-ksh7yt,
    .x-zn9gxe,
    .el-zcarcz,
    .s-a9sf05,
    .c-ni5xx7,
    .ui-mswvw3,
    ._wett78 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-m0itwr,
    .s-bx9xmq,
    .m-a3qazh,
    ._wecwnc {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-clgdto,
    .c-bb40nj,
    .js-zi909n {
        grid-template-columns: 1fr;
    }
    
    .js-j4o2dj {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .xpv6of,
    .el-jh87cq {
        flex-direction: column;
        text-align: center;
    }
    
    .a43z4w,
    .x-yrn5ju {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .m-g9gwvb {
        font-size: 32px;
    }
    
    ._f04ef3,
    .m-usyp7g {
        font-size: 28px;
    }
    
    .s-dj05nz,
    .ui-ksh7yt,
    .x-zn9gxe,
    .el-zcarcz,
    .s-a9sf05,
    .is-m0itwr,
    .s-bx9xmq,
    .m-a3qazh,
    ._wecwnc,
    .c-ni5xx7,
    .ui-mswvw3,
    ._wett78 {
        grid-template-columns: 1fr;
    }
    
    .js-j4o2dj {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .is-j4ukrt,
    .m-u5ft1x,
    .x-c2sq4x {
        flex-direction: column;
    }
    
    .is-rb5fz1 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nhfhte {
        bottom: 20px;
        right: 20px;
    }
    
    ._iy4om2 {
        display: none;
    }
    
    .ui-mauxw1 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .s-s0sniz {
        grid-template-columns: 1fr;
    }
    
    ._i8of2j {
        grid-template-columns: 1fr;
    }
    
    .ui-ii9kcv {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-l9fkjr {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-rh6qlm {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-zi22wa,
    .nhfhte,
    .ui-zi8ztt,
    .c-hzurjm {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
