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

/* CSS Variables */
:root {
    --primary: #EC407A;
    --primary-dark: {{primary_color_dark}};
    --secondary: #1565C0;
    --accent: #ffd700;
    --bg-dark: #0a0a1a;
    --bg-card: #12122a;
    --bg-light: #1a1a3a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Container */
.is-qhopun {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.el-v4fgkk {
    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-kb66xh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.m-zn6ckf:hover,
.m-zn6ckf.ui-b2pybc {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-ruqlrc {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.s-qnm7pe {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

.js-ssll7i {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.is-qyrmf5 {
    font-size: 24px;
}

.js-wmin4a {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.m-p40sm3:hover ._mg4dgf img {
    transform: scale(1.1);
}

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

.m9cqc4 {
    padding: 20px;
}

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

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

._k99g64 {
    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-e63nxq {
    background: var(--bg-dark);
}

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

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

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

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

.is-e4eltr {
    font-size: 18px;
    margin-bottom: 12px;
}

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

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

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

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

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

.el-t98m19 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.ui-rjljdc {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zzj11a {
    text-align: center;
}

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

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

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

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

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

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

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

.is-kso9p1 h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

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

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

._jf5nzj:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.s-nvw9wg.active .m-axj9zb {
    transform: rotate(45deg);
}

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

.s-nvw9wg.active .s-z06fj9 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.s-t2ko1a:hover .c-pa7sfv img {
    transform: scale(1.05);
}

.s-a51pp1 {
    padding: 20px;
}

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

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

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

.js-ii0u0f {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-nnh5w2 {
    display: flex;
    gap: 16px;
}

.js-ny2dru {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-pvadqw {
    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-nksgmx {
    font-size: 20px;
}

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

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

.is-us5d5c {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

.x-v5rz7b .is-qhopun {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.is-glmv65 h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.is-glmv65 h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.js-u2zujw {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-od5xh8 {
    margin-bottom: 24px;
}

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

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

.el-jaifa7 {
    margin-bottom: 32px;
}

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

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

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

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

.s-fze2lc p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.yizg6m li:last-child,
.el-dn9fcd li:last-child {
    border-bottom: none;
}

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

.yizg6m a:hover,
.el-dn9fcd a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-d00uzg h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

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

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

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

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

.s-rda5j2 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .x-t0631i {
        display: none;
    }
    
    .s-q6n26z {
        display: flex;
    }
    
    .qusrl2 {
        font-size: 40px;
    }
    
    .ui-k8ktre,
    .is-e4xfhv,
    .a8g1bv,
    .m-owj111,
    .is-kklek8,
    .s-iaaxzt,
    .hizxnt,
    .s-bsnqn3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-yx9i3g,
    .s-c50w8i,
    .is-dhxje8,
    .s-y10bj7 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._paixok,
    .ui-bce303,
    .ek5h8b {
        grid-template-columns: 1fr;
    }
    
    .ui-bubytd {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-x0paed,
    .s-u81p1x {
        flex-direction: column;
        text-align: center;
    }
    
    .ui-z7qra8,
    .c-oiqe3m {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .qusrl2 {
        font-size: 32px;
    }
    
    .el-n615o6,
    .o5kcpl {
        font-size: 28px;
    }
    
    .ui-k8ktre,
    .is-e4xfhv,
    .a8g1bv,
    .m-owj111,
    .is-kklek8,
    .js-yx9i3g,
    .s-c50w8i,
    .is-dhxje8,
    .s-y10bj7,
    .s-iaaxzt,
    .hizxnt,
    .s-bsnqn3 {
        grid-template-columns: 1fr;
    }
    
    .ui-bubytd {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-eyfnx7,
    .m-o45u1u,
    .m-nnh5w2 {
        flex-direction: column;
    }
    
    .is-luje04 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .m-es26wu {
        bottom: 20px;
        right: 20px;
    }
    
    .x-r2iv3j {
        display: none;
    }
    
    .x-pvadqw {
        padding: 16px;
        border-radius: 50%;
    }
    
    .bqtxxw {
        grid-template-columns: 1fr;
    }
    
    ._fszn0g {
        grid-template-columns: 1fr;
    }
    
    .el-h3975y {
        flex-direction: column;
        gap: 12px;
    }
    
    .s-eu3f4o {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-mjmghb {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .el-v4fgkk,
    .m-es26wu,
    .c-bh5b6e,
    .el-e88qx9 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
