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

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-zn9kzt {
    background: #fff;
    color: var(--bg-dark);
}

.m-zn9kzt:hover {
    background: var(--accent);
}

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

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

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

.is-rk7y1p {
    width: 100%;
}

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

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

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

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

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

.is-qbzsu1 {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-ohao2s {
    font-size: 24px;
}

.ekmry9 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.el-v7x6hp:hover .el-masrqt img {
    transform: scale(1.1);
}

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

.ui-i7q82m {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-sip3j0 {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

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

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

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

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

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

._r0ssqm {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-brdxgc {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-yrmbk1 {
    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-yrmbk1:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.qu7nx8.active ._yjvitz {
    transform: rotate(45deg);
}

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

.qu7nx8.active .c-jxfu3b {
    max-height: 500px;
}

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

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

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

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

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

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

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

.is-matdfi:hover .s-a860ox img {
    transform: scale(1.05);
}

.m-hx3nly {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-q7m04c img {
    width: 48px;
    height: 48px;
}

.x-q7m04c span {
    font-size: 20px;
    font-weight: 700;
}

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

._izki7o h4,
.is-ist4kw h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

._go5ih9 {
    font-size: 20px;
}

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

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

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

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

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

.js-yyux5a .is-lkb30s {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-nbbjwo {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

.c-xqogoj {
    width: 100%;
    margin-bottom: 24px;
}

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

.c-xqogoj td {
    padding: 12px 0;
    font-size: 14px;
}

.c-xqogoj td:first-child {
    color: var(--text-secondary);
}

.c-xqogoj td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

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

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

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

.el-v4u61a {
    margin-bottom: 32px;
}

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

.s-hn4v5x {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.s-hn4v5x p {
    margin-bottom: 16px;
}

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

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

.s-hn4v5x li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.is-gjbgjj li,
.s-urvu1c li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.is-gjbgjj li:last-child,
.s-urvu1c li:last-child {
    border-bottom: none;
}

.is-gjbgjj a,
.s-urvu1c a {
    font-size: 14px;
    color: var(--text-secondary);
}

.is-gjbgjj a:hover,
.s-urvu1c a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .el-f8viuo {
        display: none;
    }
    
    .x-r6fy63 {
        display: flex;
    }
    
    ._ybme0a {
        font-size: 40px;
    }
    
    .x-ejzb14,
    .x-qu5b7l,
    ._llyj6a,
    .is-knnwv6,
    .m-ssjjax,
    .ui-sar3cc,
    .c-fxghq4,
    .ui-gklx3u {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-dr95lm,
    .c-si43ca,
    .js-vl94ju,
    .js-omm90m {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-ch8tcu,
    .c-ae5i3w,
    .m-klq1rr {
        grid-template-columns: 1fr;
    }
    
    .x-b0l8nq {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-h8yo84,
    .ui-h1xe7a {
        flex-direction: column;
        text-align: center;
    }
    
    .szxyac,
    .is-qm0ro6 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    ._ybme0a {
        font-size: 32px;
    }
    
    ._gt38yc,
    .ui-flt8xo {
        font-size: 28px;
    }
    
    .x-ejzb14,
    .x-qu5b7l,
    ._llyj6a,
    .is-knnwv6,
    .m-ssjjax,
    .m-dr95lm,
    .c-si43ca,
    .js-vl94ju,
    .js-omm90m,
    .ui-sar3cc,
    .c-fxghq4,
    .ui-gklx3u {
        grid-template-columns: 1fr;
    }
    
    .x-b0l8nq {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .is-pu6589,
    .is-d9si6n,
    .el-lx0o7l {
        flex-direction: column;
    }
    
    .el-il27ft {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .ui-t89a8h {
        bottom: 20px;
        right: 20px;
    }
    
    .is-b0e8ps {
        display: none;
    }
    
    .z3g0f2 {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._o00wyv {
        grid-template-columns: 1fr;
    }
    
    .x-te91rt {
        grid-template-columns: 1fr;
    }
    
    ._nyzn05 {
        flex-direction: column;
        gap: 12px;
    }
    
    .c-pwryxw {
        flex-direction: column;
        gap: 8px;
    }
    
    ._lpbnvi {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-ckcdz6,
    .ui-t89a8h,
    .jespmm,
    .m-vsomb4 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
