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

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

.el-xu4n29 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.el-xu4n29 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.c-mwpgux:hover,
.c-mwpgux.ui-u6y025 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-sae44y {
    background: #fff;
    color: var(--bg-dark);
}

.x-sae44y:hover {
    background: var(--accent);
}

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

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

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

.is-i017fi {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-xxp7ab {
    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-g860wl {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-yk36w4 {
    font-size: 24px;
}

.el-ip1v9y {
    position: relative;
}

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

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

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

.x-vz3pnv {
    font-size: 14px;
    opacity: 0.9;
}

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

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

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

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

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

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

.is-ciasls:hover .x-bhemmz img {
    transform: scale(1.1);
}

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

.s-mkrdht {
    padding: 20px;
}

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

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

.is-pm2s38 {
    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
   ======================================== */
._t0hw0v {
    background: var(--bg-dark);
}

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

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

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

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

.x-qtja61 {
    font-size: 18px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-dkterf {
    display: flex;
    align-items: center;
    gap: 16px;
}

._hm91ma {
    font-size: 32px;
}

.c-dkterf h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-v38qh4:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.js-gn40mz.active .x-xpy80l {
    transform: rotate(45deg);
}

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

.js-gn40mz.active ._r6bv07 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.m-gbnp67:hover .x-mz89qb img {
    transform: scale(1.05);
}

.js-uyu0kr {
    padding: 20px;
}

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

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

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

.c-ksdgzw {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-thx4dm {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

.el-y3mnas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.el-y3mnas img {
    width: 48px;
    height: 48px;
}

.el-y3mnas span {
    font-size: 20px;
    font-weight: 700;
}

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

.s-palqu3 h4,
.ui-dsx41p h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-sduq5e {
    font-size: 20px;
}

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

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

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

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

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

.s-tzzj6l .c-inix74 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.f9lrv4 {
    margin: 16px 0 32px;
}

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

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

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

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

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

.js-z6axn1 {
    width: 100%;
    margin-bottom: 24px;
}

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

.js-z6axn1 td {
    padding: 12px 0;
    font-size: 14px;
}

.js-z6axn1 td:first-child {
    color: var(--text-secondary);
}

.js-z6axn1 td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.c-ec7vtz {
    margin-bottom: 24px;
}

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

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

._ycvdfx {
    margin-bottom: 32px;
}

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

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

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

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

.js-zw1dse p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.x-abuxv3 li,
._o13wlw li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.x-abuxv3 li:last-child,
._o13wlw li:last-child {
    border-bottom: none;
}

.x-abuxv3 a,
._o13wlw a {
    font-size: 14px;
    color: var(--text-secondary);
}

.x-abuxv3 a:hover,
._o13wlw a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-fwb5nh ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .s-adqt3w {
        display: none;
    }
    
    .m-xfhkj3 {
        display: flex;
    }
    
    .x-irnbki {
        font-size: 40px;
    }
    
    .ak33nc,
    .c-ushq93,
    .js-bxh25p,
    .is-udo1ny,
    ._ku1afu,
    .c4bh7o,
    .is-uiyxnt,
    .m-z8mqwf {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-zx1398,
    .el-rznk66,
    .el-xn7rc4,
    .c-ypb23z {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-j32doj,
    .vfu8v0,
    .x-jqhgel {
        grid-template-columns: 1fr;
    }
    
    .el-dhj6e9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .t3cjy1,
    .tp738u {
        flex-direction: column;
        text-align: center;
    }
    
    .c-jpzspb,
    .is-dx5xv6 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .x-irnbki {
        font-size: 32px;
    }
    
    .js-g860wl,
    .utkau1 {
        font-size: 28px;
    }
    
    .ak33nc,
    .c-ushq93,
    .js-bxh25p,
    .is-udo1ny,
    ._ku1afu,
    .ui-zx1398,
    .el-rznk66,
    .el-xn7rc4,
    .c-ypb23z,
    .c4bh7o,
    .is-uiyxnt,
    .m-z8mqwf {
        grid-template-columns: 1fr;
    }
    
    .el-dhj6e9 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x-fpldg4,
    .js-x7dxnf,
    .x-thx4dm {
        flex-direction: column;
    }
    
    .ipwbsi {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .el-jzjfr3 {
        bottom: 20px;
        right: 20px;
    }
    
    .is-tp5qbp {
        display: none;
    }
    
    .x-jzhu4c {
        padding: 16px;
        border-radius: 50%;
    }
    
    .c-bnazjj {
        grid-template-columns: 1fr;
    }
    
    .x-v1d3xx {
        grid-template-columns: 1fr;
    }
    
    .js-lt5gyu {
        flex-direction: column;
        gap: 12px;
    }
    
    .m-fyxaim {
        flex-direction: column;
        gap: 8px;
    }
    
    .ox3y6l {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .nn0yit,
    .el-jzjfr3,
    .ui-babiu1,
    .m-aa6rxv {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
