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

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

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

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

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

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

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

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

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

.is-py7q2o:hover,
.is-py7q2o.qr92yu {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-z1noco {
    background: #fff;
    color: var(--bg-dark);
}

.is-z1noco:hover {
    background: var(--accent);
}

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

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

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

.js-okidt2 {
    width: 100%;
}

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

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

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

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

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

.js-koug1r {
    max-width: 700px;
}

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

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

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

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

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

.ui-hc8z4w {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-upfxfr {
    font-size: 24px;
}

.c-w4ho4t {
    position: relative;
}

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

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

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

.ui-ofh9cp {
    font-size: 14px;
    opacity: 0.9;
}

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

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

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

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

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

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

.c-e4u4b5:hover .x-ewksfp img {
    transform: scale(1.1);
}

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

._t0iaty {
    padding: 20px;
}

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

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

.x-dqei7q {
    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-qm5aa1 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

.is-kr41ln {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.js-y6vewm {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.js-yz0fcz {
    display: flex;
    align-items: center;
    gap: 16px;
}

.x-tfevjt {
    font-size: 32px;
}

.js-yz0fcz h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-bvagfu:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.a06lyn.active .s-xw5en1 {
    transform: rotate(45deg);
}

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

.a06lyn.active .m-h1ricz {
    max-height: 500px;
}

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

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

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

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

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

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

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

._rr6iqm:hover .x-cz8x02 img {
    transform: scale(1.05);
}

.el-v1xrwo {
    padding: 20px;
}

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

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

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

.is-yftisu {
    text-align: center;
    margin-top: 40px;
}

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

.is-cjmtso h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.is-cjmtso h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

.c-daq6e2 {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

._fbn51m img {
    width: 48px;
    height: 48px;
}

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

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

.m-d3p238 h4,
.ui-dmenja h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.is-xvikky {
    display: flex;
    gap: 12px;
}

.is-xvikky img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.m-jzk4ae {
    font-size: 20px;
}

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

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

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

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

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

.is-vetkxg .js-dy6mvn {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-umo70d {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-cqe0ne {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-e1ivkg li:last-child,
.js-le4t77 li:last-child {
    border-bottom: none;
}

.x-e1ivkg a,
.js-le4t77 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.x-e1ivkg a:hover,
.js-le4t77 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    ._bqd7lq {
        display: none;
    }
    
    .ui-pa2p0z {
        display: flex;
    }
    
    .c-n4rfut {
        font-size: 40px;
    }
    
    .js-gy2rei,
    .m-qxx1i8,
    .c-dms1k3,
    .el-n5lwxp,
    .x-lx6j9e,
    .x-f5oon7,
    .el-egn26j,
    .c-pgxaoy {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._w5qls6,
    .m-uwkfti,
    .x-b6chi9,
    .is-tlowet {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sdzw3h,
    .x-f8s2xs,
    .m-bj6238 {
        grid-template-columns: 1fr;
    }
    
    .c-kyp2uv {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-np19s7,
    .s-xz7j8b {
        flex-direction: column;
        text-align: center;
    }
    
    .c-b3lntn,
    .js-y6vewm {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-n4rfut {
        font-size: 32px;
    }
    
    .ondauy,
    .el-gbshgq {
        font-size: 28px;
    }
    
    .js-gy2rei,
    .m-qxx1i8,
    .c-dms1k3,
    .el-n5lwxp,
    .x-lx6j9e,
    ._w5qls6,
    .m-uwkfti,
    .x-b6chi9,
    .is-tlowet,
    .x-f5oon7,
    .el-egn26j,
    .c-pgxaoy {
        grid-template-columns: 1fr;
    }
    
    .c-kyp2uv {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .m-azs24e,
    .x-m8o47i,
    .c-daq6e2 {
        flex-direction: column;
    }
    
    .s-c51dug {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-bcj9sn {
        bottom: 20px;
        right: 20px;
    }
    
    .s-poesd5 {
        display: none;
    }
    
    .is-p30f17 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .x-tub1ny {
        grid-template-columns: 1fr;
    }
    
    .js-ty36i9 {
        grid-template-columns: 1fr;
    }
    
    .is-ljaxxy {
        flex-direction: column;
        gap: 12px;
    }
    
    .x-mukqn1 {
        flex-direction: column;
        gap: 8px;
    }
    
    .df74mu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .js-q5lh1z,
    .js-bcj9sn,
    .js-air7jh,
    .x-ufhcro {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
