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

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

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

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

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

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

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

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

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

.is-aomo5c:hover,
.is-aomo5c.s-p2mrws {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

.is-gg75bw {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.q4cdrp {
    width: 100%;
}

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

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

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

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

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

._u1jhaa {
    max-width: 700px;
}

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

.m-g4obf4 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

.is-e5dm88 {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

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

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

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

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

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

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

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

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

.js-t255kw {
    font-size: 24px;
}

.m-b2wriu {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.sraj83:hover .ui-an9tli img {
    transform: scale(1.1);
}

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

.x-aysqwl {
    padding: 20px;
}

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

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

.is-jz9iwi {
    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
   ======================================== */
.m-rnje6i {
    background: var(--bg-dark);
}

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

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

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

.s-bvf76k {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-xtqfts img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

.s-aop1dw {
    display: flex;
    align-items: center;
    gap: 16px;
}

.x-c5f5bo {
    font-size: 32px;
}

.s-aop1dw h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mmjq5a {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.is-buuqb9 {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.jek4jv:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.f5atij.active ._jdx7lk {
    transform: rotate(45deg);
}

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

.f5atij.active .x-e79r94 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.ui-zobw4i:hover .s-fk8j2s img {
    transform: scale(1.05);
}

.el-ng36w1 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.is-rdu4y3 h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

.js-dvumrk {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.js-dvumrk img {
    width: 48px;
    height: 48px;
}

.js-dvumrk span {
    font-size: 20px;
    font-weight: 700;
}

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

.el-x4brfv h4,
.js-aavs8a h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.m-k9nsfw {
    display: flex;
    gap: 12px;
}

.m-k9nsfw img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.c-n53xpq {
    font-size: 20px;
}

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

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

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

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

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

.el-mjm5is .ui-rtbabw {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-mdfdkj {
    margin: 16px 0 32px;
}

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

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

.js-bjbwc6 {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

._b6dmlf {
    margin-bottom: 32px;
}

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

.is-m2eyu5 {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.is-m2eyu5 p {
    margin-bottom: 16px;
}

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

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

.is-m2eyu5 li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.el-bxxc6g li,
.js-lj9bb3 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.el-bxxc6g li:last-child,
.js-lj9bb3 li:last-child {
    border-bottom: none;
}

.el-bxxc6g a,
.js-lj9bb3 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.el-bxxc6g a:hover,
.js-lj9bb3 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .m-j4ktj5 {
        display: none;
    }
    
    .is-t20su6 {
        display: flex;
    }
    
    .c-btm5ar {
        font-size: 40px;
    }
    
    ._t2wp42,
    .c-tovyew,
    .s-jgnmpn,
    .s-suniy7,
    .el-chlkk4,
    .c-y46k4h,
    .el-gton1v,
    .ui-rpgj75 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-mzeug7,
    ._yvr8aa,
    ._tc77ih,
    .x-bpyp6o {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-v7060o,
    ._skvcqu,
    .c-rod5qi {
        grid-template-columns: 1fr;
    }
    
    .is-lka4j0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-tr080m,
    .el-dj1pn7 {
        flex-direction: column;
        text-align: center;
    }
    
    .js-ze7vps,
    .s-mcvy4l {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-btm5ar {
        font-size: 32px;
    }
    
    .is-c2d6z6,
    .is-pvg1xr {
        font-size: 28px;
    }
    
    ._t2wp42,
    .c-tovyew,
    .s-jgnmpn,
    .s-suniy7,
    .el-chlkk4,
    .ui-mzeug7,
    ._yvr8aa,
    ._tc77ih,
    .x-bpyp6o,
    .c-y46k4h,
    .el-gton1v,
    .ui-rpgj75 {
        grid-template-columns: 1fr;
    }
    
    .is-lka4j0 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .m-g4obf4,
    .js-f6mao1,
    .x-vi419x {
        flex-direction: column;
    }
    
    .c-x012j7 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .ui-x4xrgn {
        bottom: 20px;
        right: 20px;
    }
    
    .c-fbmn6o {
        display: none;
    }
    
    .s-potsde {
        padding: 16px;
        border-radius: 50%;
    }
    
    .c-wucrtg {
        grid-template-columns: 1fr;
    }
    
    .js-qxa7bn {
        grid-template-columns: 1fr;
    }
    
    .is-wdn4k0 {
        flex-direction: column;
        gap: 12px;
    }
    
    .el-efjwr3 {
        flex-direction: column;
        gap: 8px;
    }
    
    .ui-v3vpef {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .el-i15n9e,
    .ui-x4xrgn,
    .s-hhq4oe,
    .m-evtyjb {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
