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

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

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

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

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

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

.js-hviq6f {
    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-yj9s16 {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.huc98v:hover,
.huc98v.m-rzkhx9 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.ui-ekgdqz {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-n8qgkn {
    width: 100%;
}

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

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

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

.m-lj62ek::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-k2rf3u {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
}

.x-a1iqgd {
    max-width: 700px;
}

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

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

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

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

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

.c-jn1lx0 {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

.el-waqmii {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.y9o1en {
    font-size: 24px;
}

.x-ghjofw {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.js-achla7:hover ._pddaq5 img {
    transform: scale(1.1);
}

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

.is-nmsdqr {
    padding: 20px;
}

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

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

.ui-mxfcxq {
    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
   ======================================== */
.el-g05gnc {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-y4vwo7 {
    font-size: 32px;
}

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

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

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

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

.m-aq9dqb h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-s880yi a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

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

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

.is-w24h5y {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

._qh5n73 {
    text-align: center;
}

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

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

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

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

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

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

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

.el-r2an9k h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

.c-jegbvi {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.js-siz18d:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.gs4ugt.active .s-wtedre {
    transform: rotate(45deg);
}

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

.gs4ugt.active .ui-g94rkl {
    max-height: 500px;
}

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

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

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

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

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

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

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

.m-nf9v2e:hover .yrm71q img {
    transform: scale(1.05);
}

.ui-murchb {
    padding: 20px;
}

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

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

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

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

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

.c-i5k112 h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.c-i5k112 h2 strong {
    color: var(--accent);
}

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

.s-g06ht5 {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

.js-pig5r5 {
    display: flex;
    gap: 16px;
}

.el-hoaxx7 {
    text-align: center;
}

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

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

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

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

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

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

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

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

._k7pzwe h4,
.js-w9wajq h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-lmza9v {
    font-size: 20px;
}

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

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

.js-rjbort {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

.s-kv0h3d .m-cz6gi1 {
    position: relative;
    z-index: 1;
}

.js-qjf64i {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-wo4ewf {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

.js-c5a0r9 {
    margin-bottom: 24px;
}

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

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

.vgp8oe {
    margin-bottom: 32px;
}

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

.ui-s3zc4t {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.ui-s3zc4t p {
    margin-bottom: 16px;
}

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

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

.ui-s3zc4t li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

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

.c-t53jb3 li:last-child,
.x-n0isyy li:last-child {
    border-bottom: none;
}

.c-t53jb3 a,
.x-n0isyy a {
    font-size: 14px;
    color: var(--text-secondary);
}

.c-t53jb3 a:hover,
.x-n0isyy a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-gfyw9d ul {
    margin-bottom: 24px;
}

.is-gfyw9d 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-yj9s16 {
        display: none;
    }
    
    .s-dlmwvv {
        display: flex;
    }
    
    .c-sap7g1 {
        font-size: 40px;
    }
    
    .js-x7e3c4,
    .s-k31z1l,
    .m-cqoi16,
    .js-uun2o5,
    .is-gr5fje,
    .ui-yk9xea,
    ._owgawb,
    .c-ny9q1e {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-bh2dc5,
    .is-zqnpvm,
    .el-wpy6ys,
    .x-vv7lkw {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-rmdyvj,
    .i9oa43,
    .m-rt6whr {
        grid-template-columns: 1fr;
    }
    
    .js-gbj7lv {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-hfse7y,
    .x-zn9qnw {
        flex-direction: column;
        text-align: center;
    }
    
    .c-suaqx9,
    .x-lnkua7 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-sap7g1 {
        font-size: 32px;
    }
    
    .ui-eerx8n,
    .js-qjf64i {
        font-size: 28px;
    }
    
    .js-x7e3c4,
    .s-k31z1l,
    .m-cqoi16,
    .js-uun2o5,
    .is-gr5fje,
    .el-bh2dc5,
    .is-zqnpvm,
    .el-wpy6ys,
    .x-vv7lkw,
    .ui-yk9xea,
    ._owgawb,
    .c-ny9q1e {
        grid-template-columns: 1fr;
    }
    
    .js-gbj7lv {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s-a0pxtg,
    .s-g06ht5,
    .js-pig5r5 {
        flex-direction: column;
    }
    
    .s-w7lxig {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .el-oq5r1c {
        bottom: 20px;
        right: 20px;
    }
    
    .judc7z {
        display: none;
    }
    
    .ui-e4ro2y {
        padding: 16px;
        border-radius: 50%;
    }
    
    .js-z3c4a6 {
        grid-template-columns: 1fr;
    }
    
    .s-p88ao1 {
        grid-template-columns: 1fr;
    }
    
    .s-iqdau9 {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-q2yayf {
        flex-direction: column;
        gap: 8px;
    }
    
    .el-bltj4j {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-qw16pu,
    .el-oq5r1c,
    .s-ik66pv,
    .m-ob3bwf {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
