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

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

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

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

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

.s-yubci4 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

.js-gmc6kg {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.is-e3q5um:hover,
.is-e3q5um.m-zjolb7 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-l4ff8t {
    width: 100%;
}

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

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

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

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

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

.s-smnbph {
    max-width: 700px;
}

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

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

.el-td8y28 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

.el-dro3si {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 80px 0;
}

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

.is-swbije {
    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-b586n2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

.js-zfdqzc {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

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

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

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

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

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

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

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

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

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

.is-d3rw85 {
    position: relative;
}

.is-d3rw85 img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

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

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

.x-fwoz88:hover .l5dyap img {
    transform: scale(1.1);
}

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

.nmfdn4 {
    padding: 20px;
}

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

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

.ui-xmdidj {
    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
   ======================================== */
._riapcw {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-hb1ge1 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

.x-y1kz26 {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.x-y1kz26 h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-qfoikf:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.js-by60ru.active .x-g51u0s {
    transform: rotate(45deg);
}

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

.js-by60ru.active .ui-qxvr94 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.y0uknx:hover .x-adcjdo img {
    transform: scale(1.05);
}

.is-jhok5t {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-d0t5i8 img {
    width: 48px;
    height: 48px;
}

.el-d0t5i8 span {
    font-size: 20px;
    font-weight: 700;
}

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

.el-i3us6v h4,
.tq486l h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.js-d84zik {
    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-comhba {
    font-size: 20px;
}

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

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

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

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

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

.js-lv9bzc .is-otfb0f {
    position: relative;
    z-index: 1;
}

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

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

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

.el-fxyhty {
    display: flex;
    justify-content: center;
    gap: 32px;
}

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

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

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

.c-jgb4ow h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.c-jgb4ow h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._qyn9sa {
    margin-bottom: 24px;
}

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

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

.ui-y1u45p {
    margin-bottom: 32px;
}

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

.js-i4op7u {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.js-i4op7u p {
    margin-bottom: 16px;
}

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

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

.js-i4op7u li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.x-rttvhy li,
.js-vw0kzi li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.x-rttvhy li:last-child,
.js-vw0kzi li:last-child {
    border-bottom: none;
}

.x-rttvhy a,
.js-vw0kzi a {
    font-size: 14px;
    color: var(--text-secondary);
}

.x-rttvhy a:hover,
.js-vw0kzi a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .js-gmc6kg {
        display: none;
    }
    
    .el-zqihen {
        display: flex;
    }
    
    .hzdbw8 {
        font-size: 40px;
    }
    
    .c-uztsxe,
    ._ilsynn,
    .is-orlca5,
    .el-f7h9lh,
    .el-vzvzg6,
    .js-lt6mko,
    .is-yab7wb,
    .ui-zxdlh0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-v5qtys,
    .is-cozy5h,
    .et4k11,
    .el-n0s8n9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-s544zd,
    .s-ur5fr7,
    .c-il8sh0 {
        grid-template-columns: 1fr;
    }
    
    .x-byrxh6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-lsstgl,
    .xhljj1 {
        flex-direction: column;
        text-align: center;
    }
    
    .s-f1oj4m,
    ._or37gm {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hzdbw8 {
        font-size: 32px;
    }
    
    .m-b586n2,
    ._u0obw3 {
        font-size: 28px;
    }
    
    .c-uztsxe,
    ._ilsynn,
    .is-orlca5,
    .el-f7h9lh,
    .el-vzvzg6,
    .s-v5qtys,
    .is-cozy5h,
    .et4k11,
    .el-n0s8n9,
    .js-lt6mko,
    .is-yab7wb,
    .ui-zxdlh0 {
        grid-template-columns: 1fr;
    }
    
    .x-byrxh6 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .el-td8y28,
    .js-fhs875,
    .c-qqvwdz {
        flex-direction: column;
    }
    
    .s-tn7xf7 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .ui-xd4cb3 {
        bottom: 20px;
        right: 20px;
    }
    
    .c-gnvp45 {
        display: none;
    }
    
    .js-d84zik {
        padding: 16px;
        border-radius: 50%;
    }
    
    .js-u3zibx {
        grid-template-columns: 1fr;
    }
    
    .s-rpa1aa {
        grid-template-columns: 1fr;
    }
    
    .el-fxyhty {
        flex-direction: column;
        gap: 12px;
    }
    
    .x-vqjvj6 {
        flex-direction: column;
        gap: 8px;
    }
    
    .s-j748o2 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .s-ghj7ai,
    .ui-xd4cb3,
    .js-pf4n76,
    .c2nmmg {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
