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

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

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

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

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

.x-uua922 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

.el-wsajlg {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.x-kmln5e:hover,
.x-kmln5e.js-zxluas {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-a5bdt5 {
    width: 100%;
}

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

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

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

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

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

.ui-nn88qm {
    max-width: 700px;
}

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

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

.is-jy9po4 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._y0xc66 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.is-xdk8d7:hover .ui-aagfr2 img {
    transform: scale(1.1);
}

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

.m-bfbwd9 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-oz3gqt {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-cs2yr7:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.c-jhirh6.active .kuv45i {
    transform: rotate(45deg);
}

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

.c-jhirh6.active .wlbq9z {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-dgx73w:hover .js-ldg8f5 img {
    transform: scale(1.05);
}

._p6gc7c {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._gsjnoy {
    text-align: center;
}

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

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

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

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

.ui-p4iwjl {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ui-p4iwjl img {
    width: 48px;
    height: 48px;
}

.ui-p4iwjl span {
    font-size: 20px;
    font-weight: 700;
}

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

.ui-or7sfp h4,
._ydbuwo h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.ui-or7sfp ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

.s-z0lnwr {
    display: flex;
    gap: 12px;
}

.s-z0lnwr img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

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

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

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

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

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

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

.s-bzllbf .c-a66upk {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-srnx4i {
    margin-bottom: 24px;
}

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

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

.c-zn6qz9 {
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-a78384 li:last-child,
.is-nymv3j li:last-child {
    border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-fgqqzj h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .el-wsajlg {
        display: none;
    }
    
    .ui-lybvzf {
        display: flex;
    }
    
    .is-ofh78k {
        font-size: 40px;
    }
    
    .p8vl88,
    ._i2x12y,
    ._wrg6pa,
    .x-vk34r1,
    ._j6ekil,
    .js-ffve54,
    .zd62vl,
    ._wyqwgm {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-h3b0h5,
    .tgzzyg,
    .is-xy6b4q,
    ._qgusjf {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-ulf3bx,
    .el-aecibd,
    .x-ipp1i5 {
        grid-template-columns: 1fr;
    }
    
    .ui-qlzghk {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-fd53tr,
    .is-il0h5h {
        flex-direction: column;
        text-align: center;
    }
    
    .azfi0z,
    .el-oaza1m {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .is-ofh78k {
        font-size: 32px;
    }
    
    .js-yujshj,
    .s-cetc9c {
        font-size: 28px;
    }
    
    .p8vl88,
    ._i2x12y,
    ._wrg6pa,
    .x-vk34r1,
    ._j6ekil,
    .s-h3b0h5,
    .tgzzyg,
    .is-xy6b4q,
    ._qgusjf,
    .js-ffve54,
    .zd62vl,
    ._wyqwgm {
        grid-template-columns: 1fr;
    }
    
    .ui-qlzghk {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .is-jy9po4,
    .zq8876,
    .is-h6v384 {
        flex-direction: column;
    }
    
    .is-uxak9x {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-iurqwb {
        bottom: 20px;
        right: 20px;
    }
    
    .js-s11gjf {
        display: none;
    }
    
    .is-q8m0y9 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-xmznsh {
        grid-template-columns: 1fr;
    }
    
    .ui-q834m9 {
        grid-template-columns: 1fr;
    }
    
    .k8igew {
        flex-direction: column;
        gap: 12px;
    }
    
    .x-a51j4s {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-ppxkge {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .s-gg4sut,
    .js-iurqwb,
    .ui-sla391,
    .x-sdajl4 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
