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

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

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

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

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

.c-f26p3w img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.c-mjavhc:hover,
.c-mjavhc.js-sjtfb0 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-unxjfo {
    background: #fff;
    color: var(--bg-dark);
}

.ui-unxjfo:hover {
    background: var(--accent);
}

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

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

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

.is-pc8yl2 {
    width: 100%;
}

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

.ui-labsda {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

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

.ui-goh558 {
    max-width: 700px;
}

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

.s-vwxhq4 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.s-x5gj2w {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.ui-vjebka {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

.c-eav388 {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.m-mw3c70 {
    font-size: 24px;
}

.el-md2nuv {
    position: relative;
}

.el-md2nuv img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

.c-yyov8y {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

._qvm2hd:hover .c-yyov8y img {
    transform: scale(1.1);
}

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

.py7zos {
    padding: 20px;
}

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

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

.js-bnbl9t {
    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
   ======================================== */
.c-af3n34 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

.el-jfq9u1 {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.c-r8jga1 {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.is-lvmptc img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.is-lvmptc h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

.m-o0f6yt {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.x-oecvad {
    font-size: 32px;
}

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

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

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

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

.x-i6yr4t h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.x-zjq033 h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

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

.s-dr113m a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

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

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

.js-fz55ha {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

.js-hov5lg {
    text-align: center;
}

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

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

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

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

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

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

.js-tixrc9 {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

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

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

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

.x-u3nieg {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.x-t6efme:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.c-g2qbbz.active ._x7xp3u {
    transform: rotate(45deg);
}

.ui-nqc297 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.c-g2qbbz.active .ui-nqc297 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.is-p3hetp:hover .s-yzr00b img {
    transform: scale(1.05);
}

._nz7py7 {
    padding: 20px;
}

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

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

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

.el-hbtxgo {
    text-align: center;
    margin-top: 40px;
}

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

.js-mxcx6v h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.js-mxcx6v h2 strong {
    color: var(--accent);
}

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

.x-mk70v7 {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

.gwubhh {
    display: flex;
    gap: 16px;
}

.ui-cllxoe {
    text-align: center;
}

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

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

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

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

.c-m3sg62 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-m3sg62 img {
    width: 48px;
    height: 48px;
}

.c-m3sg62 span {
    font-size: 20px;
    font-weight: 700;
}

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

.js-qiojz9 h4,
.el-gq8muc h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.js-qiojz9 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

.x-q3mc6n {
    display: flex;
    gap: 12px;
}

.x-q3mc6n img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

._olf2nz {
    font-size: 20px;
}

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

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

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

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

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

.c-doakak .x-s8uzli {
    position: relative;
    z-index: 1;
}

.x-m9vw37 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.x-m4cxtz {
    margin: 16px 0 32px;
}

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

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

.js-hjp7yw {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

._zhepmt {
    margin-bottom: 24px;
}

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

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

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

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

.el-k6gl0b {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.el-k6gl0b p {
    margin-bottom: 16px;
}

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

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

.el-k6gl0b li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.c-kuj76q li,
.ui-sotwx4 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.c-kuj76q li:last-child,
.ui-sotwx4 li:last-child {
    border-bottom: none;
}

.c-kuj76q a,
.ui-sotwx4 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.c-kuj76q a:hover,
.ui-sotwx4 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._zzo2o2 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .s-vimfzl {
        display: none;
    }
    
    .ui-uh0h78 {
        display: flex;
    }
    
    .el-z9xrkd {
        font-size: 40px;
    }
    
    .s-sjyrn6,
    .c-grssma,
    .s-g5u7v4,
    .js-grlq7v,
    ._cv5l4v,
    .ui-itzy1k,
    .x-bxs708,
    ._zqfl6s {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-eg0nfn,
    .c-hscc1k,
    .el-rwri51,
    .is-ddetwa {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-vtgzsp,
    .s-eq03tr,
    .c-f1gya9 {
        grid-template-columns: 1fr;
    }
    
    .m-oqivbq {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-hchvkm,
    .el-pbfyc7 {
        flex-direction: column;
        text-align: center;
    }
    
    .js-hkyb0o,
    .m-o0f6yt {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .el-z9xrkd {
        font-size: 32px;
    }
    
    .c-swn0c0,
    .x-m9vw37 {
        font-size: 28px;
    }
    
    .s-sjyrn6,
    .c-grssma,
    .s-g5u7v4,
    .js-grlq7v,
    ._cv5l4v,
    .m-eg0nfn,
    .c-hscc1k,
    .el-rwri51,
    .is-ddetwa,
    .ui-itzy1k,
    .x-bxs708,
    ._zqfl6s {
        grid-template-columns: 1fr;
    }
    
    .m-oqivbq {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s-vwxhq4,
    .x-mk70v7,
    .gwubhh {
        flex-direction: column;
    }
    
    .x-l17291 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    ._chm8gm {
        bottom: 20px;
        right: 20px;
    }
    
    ._buik8i {
        display: none;
    }
    
    .ui-av0hm0 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .ui-xxlk55 {
        grid-template-columns: 1fr;
    }
    
    .s-x15bz3 {
        grid-template-columns: 1fr;
    }
    
    .axgl08 {
        flex-direction: column;
        gap: 12px;
    }
    
    .ui-bjqm9s {
        flex-direction: column;
        gap: 8px;
    }
    
    .x-igz5jo {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-x4qdos,
    ._chm8gm,
    .m-xgsxju,
    .m-mtx9dr {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
