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

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

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

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

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

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

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

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

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

.s-cm4wah:hover,
.s-cm4wah.c-kywn00 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-yw2r0g {
    background: #fff;
    color: var(--bg-dark);
}

.s-yw2r0g:hover {
    background: var(--accent);
}

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

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

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

.m-q7v65y {
    width: 100%;
}

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

.m-ac6fsn {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

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

.is-n4dfx9 {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-slkpty {
    font-size: 24px;
}

.chge6v {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.is-w8ufat:hover .is-zx0db0 img {
    transform: scale(1.1);
}

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

.x-khkyic {
    padding: 20px;
}

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

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

.js-m4yzsv {
    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
   ======================================== */
.aot9xx {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nt81sz {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-orqoji {
    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);
}

.m-orqoji:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.s-wijj6m.active .el-ppn3hv {
    transform: rotate(45deg);
}

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

.s-wijj6m.active .js-x4fpj4 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.ui-nf8gn1:hover .m-ivpcds img {
    transform: scale(1.05);
}

.is-yty4df {
    padding: 20px;
}

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

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

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

.x-j7ll5y {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-qj49g3 h4,
._ptby9a h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.m-hdort4 {
    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-j6aq11 {
    font-size: 20px;
}

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

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

.s-fim031 {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

.c-a391d5 .m-ks39si {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.ui-u2rj4e h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.ui-u2rj4e h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tsa3lg {
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-jgd5ww li,
.s-xmxdiw li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.is-jgd5ww li:last-child,
.s-xmxdiw li:last-child {
    border-bottom: none;
}

.is-jgd5ww a,
.s-xmxdiw a {
    font-size: 14px;
    color: var(--text-secondary);
}

.is-jgd5ww a:hover,
.s-xmxdiw a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .idtckk {
        display: none;
    }
    
    .is-pp90yz {
        display: flex;
    }
    
    .el-lfdpt6 {
        font-size: 40px;
    }
    
    .c-c66nlc,
    .s-pyhsir,
    .s-yvsmx7,
    .rqupxe,
    .c-rlch3e,
    .js-cyu5aa,
    .el-k1g16n,
    .el-n4054b {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._ob4lcl,
    .k4h7yy,
    ._qbzqat,
    .c-d55ldy {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-phm5gt,
    .c-fgayl1,
    .el-sja0v0 {
        grid-template-columns: 1fr;
    }
    
    .m-gw81n0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p720jm,
    ._zkkibg {
        flex-direction: column;
        text-align: center;
    }
    
    .el-vyx9eh,
    .c-lyw3l5 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .el-lfdpt6 {
        font-size: 32px;
    }
    
    .qp0gyn,
    .js-o154hx {
        font-size: 28px;
    }
    
    .c-c66nlc,
    .s-pyhsir,
    .s-yvsmx7,
    .rqupxe,
    .c-rlch3e,
    ._ob4lcl,
    .k4h7yy,
    ._qbzqat,
    .c-d55ldy,
    .js-cyu5aa,
    .el-k1g16n,
    .el-n4054b {
        grid-template-columns: 1fr;
    }
    
    .m-gw81n0 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    ._qeg5ga,
    .m-wz1iv9,
    .s-zlvqi6 {
        flex-direction: column;
    }
    
    .ui-esuniw {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .m-ikz7j3 {
        bottom: 20px;
        right: 20px;
    }
    
    .js-mbskz6 {
        display: none;
    }
    
    .m-hdort4 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .s-xqrs68 {
        grid-template-columns: 1fr;
    }
    
    .x-fqrv75 {
        grid-template-columns: 1fr;
    }
    
    .pw9rmp {
        flex-direction: column;
        gap: 12px;
    }
    
    .owts9i {
        flex-direction: column;
        gap: 8px;
    }
    
    .s-vt4hwm {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-t0eges,
    .m-ikz7j3,
    .el-d8chd7,
    .is-otgh6o {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
