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

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

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

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

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

.el-xbsm3u img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.ui-obza29 {
    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-y7xjeb {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.el-opo5cy:hover,
.el-opo5cy.x-x86emk {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-imb40c {
    background: #fff;
    color: var(--bg-dark);
}

.x-imb40c:hover {
    background: var(--accent);
}

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

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

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

.el-ch5h9l {
    width: 100%;
}

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

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

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

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

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

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

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

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

.x-pwdezt {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

.c-q20bre {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

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

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

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

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

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

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

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

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

.yl8xph {
    font-size: 24px;
}

.x-esc4o5 {
    position: relative;
}

.x-esc4o5 img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

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

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

._jxl92i:hover .bu0p5w img {
    transform: scale(1.1);
}

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

.el-kbgz8b {
    padding: 20px;
}

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

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

.is-y14911 {
    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-lya7qr {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-xcj7gw {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-o6jx19 {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

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

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

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

.c-gzi1e5 a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-gu1n46:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.c-z60s0x.active .ui-panayy {
    transform: rotate(45deg);
}

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

.c-z60s0x.active .x-z78y7x {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-ngtpsq:hover .c-hg90x3 img {
    transform: scale(1.05);
}

.e7ue35 {
    padding: 20px;
}

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

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

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

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

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

.ui-ga2lil h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.ui-ga2lil h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

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

.m-f90sho {
    text-align: center;
}

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

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

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

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

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

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

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

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

.c-j29fuz h4,
.x-nu7ncq h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.lnsbz6 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

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

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

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

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

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

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

.m-nta8e3 .is-hjq308 {
    position: relative;
    z-index: 1;
}

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

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

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

.js-o8th3j {
    display: flex;
    justify-content: center;
    gap: 32px;
}

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

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

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

.js-ziawya h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.js-ziawya h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-p7kegk {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-k6rrho li:last-child,
.s-u3ij7e li:last-child {
    border-bottom: none;
}

.ui-k6rrho a,
.s-u3ij7e a {
    font-size: 14px;
    color: var(--text-secondary);
}

.ui-k6rrho a:hover,
.s-u3ij7e a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-zt3vpl ul {
    margin-bottom: 24px;
}

.el-zt3vpl 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-y7xjeb {
        display: none;
    }
    
    .m-s8mcje {
        display: flex;
    }
    
    .el-c4jkpf {
        font-size: 40px;
    }
    
    .ui-rbn2rj,
    .el-gmj68q,
    .m-h7gb1i,
    .js-fw2x0h,
    .x-bto6j0,
    .is-yxzldv,
    .is-wj5v7q,
    .ui-b7371v {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-w6639a,
    .ls8f1w,
    .m-cxcsmw,
    .js-abu943 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ypy9v9,
    .el-fcdd10,
    .s-n0ik0y {
        grid-template-columns: 1fr;
    }
    
    .x-no0vpg {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-b0xe8x,
    .m-cihn4c {
        flex-direction: column;
        text-align: center;
    }
    
    .x-b6zqlk,
    .el-kerc3g {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .el-c4jkpf {
        font-size: 32px;
    }
    
    .s-akye7b,
    .js-af511h {
        font-size: 28px;
    }
    
    .ui-rbn2rj,
    .el-gmj68q,
    .m-h7gb1i,
    .js-fw2x0h,
    .x-bto6j0,
    .js-w6639a,
    .ls8f1w,
    .m-cxcsmw,
    .js-abu943,
    .is-yxzldv,
    .is-wj5v7q,
    .ui-b7371v {
        grid-template-columns: 1fr;
    }
    
    .x-no0vpg {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x-pwdezt,
    .s-niy0sf,
    .s-t3sw1y {
        flex-direction: column;
    }
    
    .ytkguz {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .s-ipashu {
        bottom: 20px;
        right: 20px;
    }
    
    .js-avzavg {
        display: none;
    }
    
    .lnsbz6 {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._vut8om {
        grid-template-columns: 1fr;
    }
    
    .x-j7jmxs {
        grid-template-columns: 1fr;
    }
    
    .js-o8th3j {
        flex-direction: column;
        gap: 12px;
    }
    
    .wr1m3q {
        flex-direction: column;
        gap: 8px;
    }
    
    .s-qkku6j {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .js-t42fr2,
    .s-ipashu,
    .s-ao7c40,
    ._qdv61u {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
