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

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

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

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

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

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

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

.m-sigjcu {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.c-moe5jn:hover,
.c-moe5jn.m-fy0kv5 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-qlf89p {
    width: 100%;
}

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

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

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

.x-qg1qdl::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-emqxxu {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
}

.m-toasls {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-mfmzul {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.ymsr7a:hover .c-d6ip5p img {
    transform: scale(1.1);
}

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

.s-rudj2a {
    padding: 20px;
}

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

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

.js-xmz11k {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-zdxtdx {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

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

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

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

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

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

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

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

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

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

.is-szeer8 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-mgx34q {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-si1ipv {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-ayzvso {
    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-ayzvso:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.c-lqe0wl.active .s-jappo5 {
    transform: rotate(45deg);
}

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

.c-lqe0wl.active .x-og1shg {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-e7c7s0:hover .x-gam9e0 img {
    transform: scale(1.05);
}

.is-xanx0p {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-wr01fy img {
    width: 48px;
    height: 48px;
}

.js-wr01fy span {
    font-size: 20px;
    font-weight: 700;
}

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

.y7vwpe h4,
.m-qwsdo7 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-irxrr1 .s-gfjq8l {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.el-fgji0t h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.el-fgji0t h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._xuj9ut {
    margin-bottom: 32px;
}

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

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

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

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

._mkbz2g p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

._mtxljn li:last-child,
.el-lu1mc3 li:last-child {
    border-bottom: none;
}

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

._mtxljn a:hover,
.el-lu1mc3 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-j4c8du h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .m-sigjcu {
        display: none;
    }
    
    ._yfy459 {
        display: flex;
    }
    
    .s-zx63cl {
        font-size: 40px;
    }
    
    ._lcgzv9,
    .t9i12s,
    .m-pqkpkn,
    .s-nnyomy,
    .x-nv05hi,
    .x-a83kvk,
    .x-ya26oy,
    .x-hrmyj6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-rz0p0m,
    .el-bixbh8,
    .el-ti2xa4,
    .ykip58 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-oq6em1,
    .c-dffl5m,
    .x-flv81z {
        grid-template-columns: 1fr;
    }
    
    .c-rk0fwl {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-awkhl8,
    .s-jpa5l3 {
        flex-direction: column;
        text-align: center;
    }
    
    .c-xuef16,
    .s-tvff8q {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-zx63cl {
        font-size: 32px;
    }
    
    .uqv6cm,
    .el-bktubc {
        font-size: 28px;
    }
    
    ._lcgzv9,
    .t9i12s,
    .m-pqkpkn,
    .s-nnyomy,
    .x-nv05hi,
    .is-rz0p0m,
    .el-bixbh8,
    .el-ti2xa4,
    .ykip58,
    .x-a83kvk,
    .x-ya26oy,
    .x-hrmyj6 {
        grid-template-columns: 1fr;
    }
    
    .c-rk0fwl {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-i1uode,
    .is-rcunnq,
    .ui-zbsbm3 {
        flex-direction: column;
    }
    
    .s-zl3aib {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .s-d5q47e {
        bottom: 20px;
        right: 20px;
    }
    
    .m-iwkl8b {
        display: none;
    }
    
    .js-hey7s6 {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._u9yecf {
        grid-template-columns: 1fr;
    }
    
    .el-z5a9w8 {
        grid-template-columns: 1fr;
    }
    
    .el-u6befh {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-nlnf9v {
        flex-direction: column;
        gap: 8px;
    }
    
    .x-gfzfje {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .s-y5np8l,
    .s-d5q47e,
    .c-i12p4y,
    .ui-wyr55b {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
