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

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

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

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

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

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

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

.c-wu92nq {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.m-mps4nw:hover,
.m-mps4nw.c-hnv5d4 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.ui-ou92kq a {
    color: var(--text-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

._naz3h5 {
    width: 100%;
}

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

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

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

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

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

.iqy0ny {
    max-width: 700px;
}

.js-qaui46 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.c-mkedd1 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

.ui-ibftar {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

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

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

.ui-zgwkqp {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

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

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

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

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

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

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

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

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

.ui-wsqpyb {
    font-size: 24px;
}

.s-jejrfl {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.c-s6onwl:hover .is-kxf7bk img {
    transform: scale(1.1);
}

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

._y5ovx4 {
    padding: 20px;
}

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

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

.js-a4r4gk {
    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-r3dsvi {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.o2u6nr {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-wndr0v:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.k1eu8h.active .ui-qk3lp1 {
    transform: rotate(45deg);
}

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

.k1eu8h.active ._t2h65z {
    max-height: 500px;
}

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

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

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

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

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

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

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

._ppwwgv:hover .x-hx3zq0 img {
    transform: scale(1.05);
}

.x-qy8jp8 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-t5gh4b {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-t5gh4b img {
    width: 48px;
    height: 48px;
}

.s-t5gh4b span {
    font-size: 20px;
    font-weight: 700;
}

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

.if6osv h4,
.s-s1kyq7 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

._dxcb3p {
    display: flex;
    gap: 12px;
}

._dxcb3p img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

._l2dlrs {
    font-size: 20px;
}

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

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

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

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

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

.c-p1649u .c-jn7rv3 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-a13jep {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

._xilo7h {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-tzcmvt li:last-child,
._iuc4up li:last-child {
    border-bottom: none;
}

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

.ui-tzcmvt a:hover,
._iuc4up a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.s-bwb66p {
    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-zlkgup h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-enjaif ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .c-wu92nq {
        display: none;
    }
    
    ._k6cw3f {
        display: flex;
    }
    
    .js-qaui46 {
        font-size: 40px;
    }
    
    .x-s7l7dg,
    .ui-wfkosj,
    .puo953,
    .c-hocy94,
    .ui-sg2ano,
    .js-jy5z2v,
    .el-nsjj7k,
    .js-krrq47 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._h4ohgd,
    .x-rf4nta,
    .is-x5p8tt,
    ._fyrsjt {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-rujkqy,
    .js-whpyb4,
    .x-c6z38i {
        grid-template-columns: 1fr;
    }
    
    .m-b1j0bx {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p6eovh,
    .x-mkibed {
        flex-direction: column;
        text-align: center;
    }
    
    .is-v1z95w,
    .x-pge5qk {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .js-qaui46 {
        font-size: 32px;
    }
    
    .ui-gleu66,
    .s-gxsk2f {
        font-size: 28px;
    }
    
    .x-s7l7dg,
    .ui-wfkosj,
    .puo953,
    .c-hocy94,
    .ui-sg2ano,
    ._h4ohgd,
    .x-rf4nta,
    .is-x5p8tt,
    ._fyrsjt,
    .js-jy5z2v,
    .el-nsjj7k,
    .js-krrq47 {
        grid-template-columns: 1fr;
    }
    
    .m-b1j0bx {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .c-mkedd1,
    .sr8401,
    .js-jfuxs3 {
        flex-direction: column;
    }
    
    .c-hh72y1 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .ui-f1dpde {
        bottom: 20px;
        right: 20px;
    }
    
    ._dttenc {
        display: none;
    }
    
    ._aibr7g {
        padding: 16px;
        border-radius: 50%;
    }
    
    .f8xy7n {
        grid-template-columns: 1fr;
    }
    
    .s-v32qwl {
        grid-template-columns: 1fr;
    }
    
    .m-gbbhn4 {
        flex-direction: column;
        gap: 12px;
    }
    
    .el-sxi6y1 {
        flex-direction: column;
        gap: 8px;
    }
    
    .is-ilydp5 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-aiugj0,
    .ui-f1dpde,
    .js-mfigak,
    .f56hd5 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
