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

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

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

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

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

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

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

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

.m-wxcdsp:hover,
.m-wxcdsp.is-a8q19a {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

.c-iiw70x {
    background: #fff;
    color: var(--bg-dark);
}

.c-iiw70x:hover {
    background: var(--accent);
}

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

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

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

.c-b94ryw {
    width: 100%;
}

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

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

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

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

.s-xsgaz6 {
    max-width: 700px;
}

._fvhlqr {
    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-x68el1 {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

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

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

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

.c-x0erlj {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-xp8sbb {
    font-size: 24px;
}

.prxjy9 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.js-wh563f:hover .is-d2inm8 img {
    transform: scale(1.1);
}

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

._lbpgu7 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.js-wpygxj {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

.s-wesgw3 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

.is-xu2qfv {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-kyfenx h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

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

._dzdnn6.active .ui-nt4oy5 {
    transform: rotate(45deg);
}

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

._dzdnn6.active .ui-hmkxgs {
    max-height: 500px;
}

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

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

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

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

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

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

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

._ikvm02:hover .x-y6qzi7 img {
    transform: scale(1.05);
}

.m-cicn48 {
    padding: 20px;
}

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

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

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

.ui-kt1dbg {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-c78jj0 {
    display: flex;
    gap: 16px;
}

._vre032 {
    text-align: center;
}

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

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

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

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

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

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

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

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

.s-in341a h4,
.qif2sv h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.ui-c0zhl3 {
    display: flex;
    gap: 12px;
}

.ui-c0zhl3 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.s-k3b6io {
    font-size: 20px;
}

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

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

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

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

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

.ui-v8cnn3 .x-rs0lgf {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-pwuzj8 {
    margin: 16px 0 32px;
}

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

.ui-pwuzj8 li strong {
    color: var(--text-primary);
}

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

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

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

.is-l0zu9w {
    width: 100%;
    margin-bottom: 24px;
}

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

.is-l0zu9w td {
    padding: 12px 0;
    font-size: 14px;
}

.is-l0zu9w td:first-child {
    color: var(--text-secondary);
}

.is-l0zu9w td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

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

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

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

.x-yx5sz3 {
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-nyqzp7 li:last-child,
.jd7pge li:last-child {
    border-bottom: none;
}

.m-nyqzp7 a,
.jd7pge a {
    font-size: 14px;
    color: var(--text-secondary);
}

.m-nyqzp7 a:hover,
.jd7pge a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._o43ns8 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-lmm77g {
        display: none;
    }
    
    .c-eb0x3y {
        display: flex;
    }
    
    ._fvhlqr {
        font-size: 40px;
    }
    
    .is-hsge1y,
    .s-ax5syi,
    ._evnx7y,
    .m-gmjhpp,
    .c-i49j7e,
    .el-rp0l9y,
    .qph9xs,
    .x-uhpkyi {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-kp17wd,
    .ui-m13yzg,
    .m-atx2f6,
    .m-ljr41m {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-l77piz,
    .c-bvl9qb,
    .m-f14ufj {
        grid-template-columns: 1fr;
    }
    
    .s-glbrjn {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .q0pktp,
    .guuthe {
        flex-direction: column;
        text-align: center;
    }
    
    .s-i8j1gf,
    .is-xu2qfv {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    ._fvhlqr {
        font-size: 32px;
    }
    
    .js-ogpqnu,
    .is-jzbvc7 {
        font-size: 28px;
    }
    
    .is-hsge1y,
    .s-ax5syi,
    ._evnx7y,
    .m-gmjhpp,
    .c-i49j7e,
    .el-kp17wd,
    .ui-m13yzg,
    .m-atx2f6,
    .m-ljr41m,
    .el-rp0l9y,
    .qph9xs,
    .x-uhpkyi {
        grid-template-columns: 1fr;
    }
    
    .s-glbrjn {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x-yhu74r,
    .okp4us,
    .el-c78jj0 {
        flex-direction: column;
    }
    
    .sy8pow {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .x-b4xdac {
        bottom: 20px;
        right: 20px;
    }
    
    .s-x8oxnw {
        display: none;
    }
    
    .c-vxju1s {
        padding: 16px;
        border-radius: 50%;
    }
    
    .c-wgbzee {
        grid-template-columns: 1fr;
    }
    
    .dqyu90 {
        grid-template-columns: 1fr;
    }
    
    .thb0m5 {
        flex-direction: column;
        gap: 12px;
    }
    
    .el-vjukej {
        flex-direction: column;
        gap: 8px;
    }
    
    ._am0g6x {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-h15xb2,
    .x-b4xdac,
    .is-qrlx42,
    .js-ob068j {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
