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

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

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

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

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

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

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

.ui-u5907f {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.is-e8v3e7:hover,
.is-e8v3e7.js-t69uu5 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fo9hpj {
    width: 100%;
}

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

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

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

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

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

.js-fsqcfd {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-y0t2ed {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.x-hofxv0:hover .el-t5b4me img {
    transform: scale(1.1);
}

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

.c-w2p6za {
    padding: 20px;
}

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

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

.s-p479eg {
    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-kmslh3 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

.el-mlqn19 {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.m-ji7q9f {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.js-swv2e8 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

.el-svz8mf {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.el-svz8mf h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._trzg7e {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-l1rpbk:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.ui-sigkie.active .c-pych0r {
    transform: rotate(45deg);
}

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

.ui-sigkie.active .pti3h7 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.js-v3e7gf:hover .x-rv67eg img {
    transform: scale(1.05);
}

._t96w5p {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-ehuu5i {
    text-align: center;
}

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

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

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

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

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

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

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

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

.s-d4rxxx h4,
.is-rdoosh h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-q2m597 {
    font-size: 20px;
}

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

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

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

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

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

.ui-zb3jey .ui-ms8i0v {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-t1zvps {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

.b4j5pf {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-atf1xa li,
.el-sp9qht li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.m-atf1xa li:last-child,
.el-sp9qht li:last-child {
    border-bottom: none;
}

.m-atf1xa a,
.el-sp9qht a {
    font-size: 14px;
    color: var(--text-secondary);
}

.m-atf1xa a:hover,
.el-sp9qht a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .ui-u5907f {
        display: none;
    }
    
    .x-xt2s6a {
        display: flex;
    }
    
    .m-ohyll2 {
        font-size: 40px;
    }
    
    .js-r015td,
    .c-pqxmpm,
    .is-gdiomi,
    .txnzo0,
    .l0ya51,
    .s-jq2c8n,
    .el-i7qb1u,
    .el-t43llv {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-d0b8f2,
    .x-gtmjj0,
    .s-lwvzhv,
    .is-fj56ox {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qp14o1,
    .ui-xjadzj,
    .m-iuxu5h {
        grid-template-columns: 1fr;
    }
    
    .c-u45sg0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-po4xey,
    ._cf8xkb {
        flex-direction: column;
        text-align: center;
    }
    
    .jrc99p,
    .rp57k6 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .m-ohyll2 {
        font-size: 32px;
    }
    
    .f3r2dd,
    .c-os0d7g {
        font-size: 28px;
    }
    
    .js-r015td,
    .c-pqxmpm,
    .is-gdiomi,
    .txnzo0,
    .l0ya51,
    .is-d0b8f2,
    .x-gtmjj0,
    .s-lwvzhv,
    .is-fj56ox,
    .s-jq2c8n,
    .el-i7qb1u,
    .el-t43llv {
        grid-template-columns: 1fr;
    }
    
    .c-u45sg0 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .c-jts9o8,
    .s-g446zc,
    .ui-mn493n {
        flex-direction: column;
    }
    
    .d6115l {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-xfzbwf {
        bottom: 20px;
        right: 20px;
    }
    
    .c-zxhtg4 {
        display: none;
    }
    
    .vpp7wi {
        padding: 16px;
        border-radius: 50%;
    }
    
    .js-ia56ff {
        grid-template-columns: 1fr;
    }
    
    .s-pgmg6v {
        grid-template-columns: 1fr;
    }
    
    .x-q7q729 {
        flex-direction: column;
        gap: 12px;
    }
    
    .el-e4rt24 {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-x49p1b {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    ._s8hm86,
    .js-xfzbwf,
    .is-h7uam5,
    .c-jlz6pr {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
