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

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

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

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

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

.s-nv33j9 {
    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-aeg899 {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.js-c2x4cw:hover,
.js-c2x4cw._vgvy4b {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

/* ========================================
   Buttons
   ======================================== */
.s-kxv8re {
    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-un8ucc {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

.m-peyxa3 {
    width: 100%;
}

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

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

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

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

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

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

.x-hiqkjs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

.js-obzwv6 {
    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-xh7t7k {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-ypcjnh {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.c-bubeuf:hover ._bqqppz img {
    transform: scale(1.1);
}

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

._xqhsux {
    padding: 20px;
}

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

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

.el-lfalh8 {
    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-lz60vu {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

.s-yb36sq {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.js-eod1k1 {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.js-eod1k1 h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-ivw4i3 {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-gagk9h {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.ui-jyc3pz:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

._ikrbo2.active .s-nfozcr {
    transform: rotate(45deg);
}

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

._ikrbo2.active .c-n9ozpp {
    max-height: 500px;
}

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

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

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

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

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

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

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

.s-r511xm:hover ._zjimaw img {
    transform: scale(1.05);
}

.ui-fthiuj {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.boe1oy {
    text-align: center;
}

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

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

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

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

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

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

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

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

.ui-tbx2vg h4,
.c-zkoztp h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-bu097x {
    font-size: 20px;
}

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

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

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

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

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

.ui-xacxsz ._y0dzrn {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-i0l0s7 {
    margin: 16px 0 32px;
}

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

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

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

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

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

.is-zu7213 {
    width: 100%;
    margin-bottom: 24px;
}

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

.is-zu7213 td {
    padding: 12px 0;
    font-size: 14px;
}

.is-zu7213 td:first-child {
    color: var(--text-secondary);
}

.is-zu7213 td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.el-nvgc43 {
    margin-bottom: 24px;
}

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

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

.js-z4yqys {
    margin-bottom: 32px;
}

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

.c-djyexo {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.c-djyexo p {
    margin-bottom: 16px;
}

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

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

.c-djyexo li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

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

.s-bwisrv li:last-child,
.x-nwebln li:last-child {
    border-bottom: none;
}

.s-bwisrv a,
.x-nwebln a {
    font-size: 14px;
    color: var(--text-secondary);
}

.s-bwisrv a:hover,
.x-nwebln a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.ecl9r0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bdnltn 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-aeg899 {
        display: none;
    }
    
    .c-xkhd6q {
        display: flex;
    }
    
    ._vxsofi {
        font-size: 40px;
    }
    
    .js-vqneun,
    .x-p3enjv,
    .v1okdj,
    .js-aobp7j,
    .m-d69uly,
    .js-rqwy07,
    .x-phk86g,
    ._iwkspa {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-zeu3iw,
    .x-ln10qh,
    ._o3j3i9,
    .el-l3reu2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .i21tb6,
    .el-gqyjih,
    .el-axjeob {
        grid-template-columns: 1fr;
    }
    
    .ui-ee1y3j {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-tt7btq,
    .is-okknn0 {
        flex-direction: column;
        text-align: center;
    }
    
    .is-qkrk1r,
    .el-fskwhh {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    ._vxsofi {
        font-size: 32px;
    }
    
    .el-vvhxgo,
    .c-h1xpti {
        font-size: 28px;
    }
    
    .js-vqneun,
    .x-p3enjv,
    .v1okdj,
    .js-aobp7j,
    .m-d69uly,
    .el-zeu3iw,
    .x-ln10qh,
    ._o3j3i9,
    .el-l3reu2,
    .js-rqwy07,
    .x-phk86g,
    ._iwkspa {
        grid-template-columns: 1fr;
    }
    
    .ui-ee1y3j {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x-hiqkjs,
    .ui-cqfso5,
    ._hasnje {
        flex-direction: column;
    }
    
    .el-u8z0yh {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-i8jy5g {
        bottom: 20px;
        right: 20px;
    }
    
    .s-olb8na {
        display: none;
    }
    
    .x-bu5up7 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .m-j2j0ni {
        grid-template-columns: 1fr;
    }
    
    .sqy4kf {
        grid-template-columns: 1fr;
    }
    
    .is-vlxk4m {
        flex-direction: column;
        gap: 12px;
    }
    
    .ui-ujnrp6 {
        flex-direction: column;
        gap: 8px;
    }
    
    .p7zbe8 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .el-uuyqtg,
    .js-i8jy5g,
    ._j47kr6,
    .el-orpxcf {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
