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

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

/* ========================================
   Header & Navigation
   ======================================== */
.m-owr0ml {
    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-cane7h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.c-cibm2m:hover,
.c-cibm2m.og2fc3 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-xuvjwc {
    background: #fff;
    color: var(--bg-dark);
}

.is-xuvjwc:hover {
    background: var(--accent);
}

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

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

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

.s-stgs79 {
    width: 100%;
}

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

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

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

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

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

.el-za02sk {
    max-width: 700px;
}

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

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

.el-hwi3ld {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.is-uwtu70 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.s-sryre8 {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.is-e53vy1 {
    font-size: 24px;
}

.ui-m3ywd2 {
    position: relative;
}

.ui-m3ywd2 img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

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

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

._i6doka:hover .c-xdfm9t img {
    transform: scale(1.1);
}

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

.ui-eu85dl {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-rs1ap4 {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.c-xdzdpw img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.c-xdzdpw h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

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

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

.m-a74yu4 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-bdh6e4 {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.js-xe2jwa h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

.s-l9cyb3 {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.x-grdmbb.active .js-wu9qzs {
    transform: rotate(45deg);
}

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

.x-grdmbb.active ._p4s3f7 {
    max-height: 500px;
}

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

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

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

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

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

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

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

._gcetyk:hover .m-ailp2d img {
    transform: scale(1.05);
}

.el-nkctdc {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-t8zpza {
    display: flex;
    gap: 16px;
}

.x-xrj113 {
    text-align: center;
}

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

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

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

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

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

.ui-xd9w75 img {
    width: 48px;
    height: 48px;
}

.ui-xd9w75 span {
    font-size: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

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

.js-gcycqk {
    display: flex;
    gap: 12px;
}

.js-gcycqk img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.kkx17n {
    font-size: 20px;
}

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

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

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

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

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

.m-d9eq77 ._h5bi49 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-q9wyxs {
    margin: 16px 0 32px;
}

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

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

.is-m78mgc {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

.s-mdbupq {
    width: 100%;
    margin-bottom: 24px;
}

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

.s-mdbupq td {
    padding: 12px 0;
    font-size: 14px;
}

.s-mdbupq td:first-child {
    color: var(--text-secondary);
}

.s-mdbupq td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.ui-agb7yi {
    margin-bottom: 24px;
}

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

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

._x4n7ve {
    margin-bottom: 32px;
}

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

.m-q7o7ye {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.m-q7o7ye p {
    margin-bottom: 16px;
}

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

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

.m-q7o7ye li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.m-nqx1q1 li,
.s-pynno4 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.m-nqx1q1 li:last-child,
.s-pynno4 li:last-child {
    border-bottom: none;
}

.m-nqx1q1 a,
.s-pynno4 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.m-nqx1q1 a:hover,
.s-pynno4 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-oqlmpf ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .m-z4pvxs {
        display: none;
    }
    
    .s-p8o5g5 {
        display: flex;
    }
    
    .x-e5z5cz {
        font-size: 40px;
    }
    
    .s-ca4uxx,
    .joatm9,
    .ui-pgjp08,
    .ui-rqenzg,
    .is-oo3dzs,
    .s2sbdn,
    ._f8t5vb,
    .ui-yqhxdj {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-ba7q2v,
    .s-xgwm9c,
    .m-tpqilo,
    .el-vsagmr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-z47ww8,
    .c-ktrvxw,
    .m-uceamp {
        grid-template-columns: 1fr;
    }
    
    ._s9g3sb {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-yy19bo,
    .qtdpma {
        flex-direction: column;
        text-align: center;
    }
    
    .is-cktjm6,
    ._i0xq1p {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .x-e5z5cz {
        font-size: 32px;
    }
    
    .x-osxk2q,
    ._o5ncei {
        font-size: 28px;
    }
    
    .s-ca4uxx,
    .joatm9,
    .ui-pgjp08,
    .ui-rqenzg,
    .is-oo3dzs,
    .x-ba7q2v,
    .s-xgwm9c,
    .m-tpqilo,
    .el-vsagmr,
    .s2sbdn,
    ._f8t5vb,
    .ui-yqhxdj {
        grid-template-columns: 1fr;
    }
    
    ._s9g3sb {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .el-hwi3ld,
    ._kl1ls9,
    .ui-t8zpza {
        flex-direction: column;
    }
    
    .el-up0w5z {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-spk9ww {
        bottom: 20px;
        right: 20px;
    }
    
    .el-z7sfte {
        display: none;
    }
    
    .el-hx4omq {
        padding: 16px;
        border-radius: 50%;
    }
    
    .x-mavaku {
        grid-template-columns: 1fr;
    }
    
    .js-z96j7d {
        grid-template-columns: 1fr;
    }
    
    ._cbnrky {
        flex-direction: column;
        gap: 12px;
    }
    
    .kz6lkf {
        flex-direction: column;
        gap: 8px;
    }
    
    .ui-suhnj9 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .m-owr0ml,
    .js-spk9ww,
    .is-j8hkb8,
    .el-dlnxwn {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
