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

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

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

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

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

.js-d54zy7 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

.is-w4sga3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

._ctmjfe:hover,
._ctmjfe.x-twp8ix {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

.m-u8yvsw {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.4);
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-bw8fpr {
    width: 100%;
}

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

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

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

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

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

._ymzi41 {
    max-width: 700px;
}

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

.ui-mylrs3 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-jyansf {
    font-size: 24px;
}

.el-zgrxpj {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.el-u5l71u:hover .x-hqek2n img {
    transform: scale(1.1);
}

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

.js-pqtbnc {
    padding: 20px;
}

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

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

.qi9o0t {
    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-v8fqhv {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

.m-ph4dan {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.js-y75v6p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.is-w9h5ht img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.c-mz15jc {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-lct7e6 a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

._aax111 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-fd43gl:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.s-bjw49h.active .v5mfeq {
    transform: rotate(45deg);
}

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

.s-bjw49h.active .x-ng5scc {
    max-height: 500px;
}

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

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

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

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

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

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

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

.s-sqi6ip:hover .vkwlea img {
    transform: scale(1.05);
}

.c-bc055m {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-kbmjmr {
    display: flex;
    gap: 16px;
}

._ekxdoa {
    text-align: center;
}

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

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

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

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

.is-p2i55t {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.is-p2i55t img {
    width: 48px;
    height: 48px;
}

.is-p2i55t span {
    font-size: 20px;
    font-weight: 700;
}

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

.js-yhix8t h4,
.lnavrd h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.js-kglb5v {
    font-size: 20px;
}

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

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

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

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

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

.lx09dj .x-etbqpu {
    position: relative;
    z-index: 1;
}

.js-hfrav8 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.x-yt406x {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-wbvo9c {
    margin-bottom: 24px;
}

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

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

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

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

.ui-c056oe {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.ui-c056oe p {
    margin-bottom: 16px;
}

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

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

.ui-c056oe li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.is-upbdvq li,
.m-a8qm3o li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.is-upbdvq li:last-child,
.m-a8qm3o li:last-child {
    border-bottom: none;
}

.is-upbdvq a,
.m-a8qm3o a {
    font-size: 14px;
    color: var(--text-secondary);
}

.is-upbdvq a:hover,
.m-a8qm3o a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-kvhiyf ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .is-w4sga3 {
        display: none;
    }
    
    .js-utdmac {
        display: flex;
    }
    
    .s-v38v91 {
        font-size: 40px;
    }
    
    .x-ilpro3,
    .is-vqh0jt,
    .ui-x031s7,
    .m-hdj04r,
    .is-xe2dw5,
    .el-wgrakx,
    ._fvboar,
    .is-a4dca1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-nnt9gd,
    .x-o3hvhz,
    .c-g7of48,
    .s-i15f63 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-ag8oqj,
    .m-gjpk6f,
    .js-qjgltr {
        grid-template-columns: 1fr;
    }
    
    .c-f051lc {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-c33nei,
    ._pzv3f7 {
        flex-direction: column;
        text-align: center;
    }
    
    .c-hjj98g,
    .s-hwmhma {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-v38v91 {
        font-size: 32px;
    }
    
    .m-ffw821,
    .js-hfrav8 {
        font-size: 28px;
    }
    
    .x-ilpro3,
    .is-vqh0jt,
    .ui-x031s7,
    .m-hdj04r,
    .is-xe2dw5,
    .is-nnt9gd,
    .x-o3hvhz,
    .c-g7of48,
    .s-i15f63,
    .el-wgrakx,
    ._fvboar,
    .is-a4dca1 {
        grid-template-columns: 1fr;
    }
    
    .c-f051lc {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-mylrs3,
    ._q4sc82,
    .c-kbmjmr {
        flex-direction: column;
    }
    
    .plmfn6 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .m-q0lsi7 {
        bottom: 20px;
        right: 20px;
    }
    
    .c-q66kra {
        display: none;
    }
    
    .is-agf97j {
        padding: 16px;
        border-radius: 50%;
    }
    
    .x-q19gsl {
        grid-template-columns: 1fr;
    }
    
    .ui-rghona {
        grid-template-columns: 1fr;
    }
    
    .m-q1bioe {
        flex-direction: column;
        gap: 12px;
    }
    
    .x-z1w3w1 {
        flex-direction: column;
        gap: 8px;
    }
    
    .m-b3v6z7 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    ._cvv44j,
    .m-q0lsi7,
    .s-g8ei25,
    .c-yofbq0 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
