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

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

.m-cnw5ey img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.is-vv5ub9 {
    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-fvaz68 {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-ei39zb {
    width: 100%;
}

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

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

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

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

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

.el-d0os7a {
    max-width: 700px;
}

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

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

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

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

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

.el-wq4pcj {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-grqk75 {
    font-size: 24px;
}

.x-qnzu5d {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.m-tswz7j:hover .iq0b0d img {
    transform: scale(1.1);
}

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

.m-pypciu {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-omoe4m img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

.x-y7zsf5 {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.el-obrv5f {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._uutgob {
    text-align: center;
}

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

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

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

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

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

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

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

.el-az0n3z h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

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

.el-d63qox.active .s-ok89ah {
    transform: rotate(45deg);
}

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

.el-d63qox.active .s-wfvk19 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-lw3snc:hover .bsxbgw img {
    transform: scale(1.05);
}

.js-qxu2q9 {
    padding: 20px;
}

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

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

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

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

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

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

.js-miq1lr h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-x3feqn h4,
.m-p47yak h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.js-bt4if5 {
    display: flex;
    gap: 12px;
}

.js-bt4if5 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.ui-a9pkxw {
    font-size: 20px;
}

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

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

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

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

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

.js-smqtmy .m-v4xe3g {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-dt3lsk {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-nkwhtb {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

.wk2134 p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.s-v3zg5x h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.s-v3zg5x p {
    opacity: 0.9;
    margin-bottom: 20px;
}

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

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

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

.is-tk5o60 li:last-child,
.ymip3p li:last-child {
    border-bottom: none;
}

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

.is-tk5o60 a:hover,
.ymip3p a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-ic0wc3 ul {
    margin-bottom: 24px;
}

.c-ic0wc3 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-fvaz68 {
        display: none;
    }
    
    .ui-xglydw {
        display: flex;
    }
    
    .c-httpg4 {
        font-size: 40px;
    }
    
    .el-il9fts,
    .ngtkqw,
    ._qwp0gm,
    .is-j8jy00,
    .ui-p3occc,
    .u5vcxv,
    .el-ymn0g7,
    ._iti18h {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ril26f,
    .ui-rj2z59,
    ._yrfenk,
    .is-g2wdzr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-nrko4o,
    .o2ttgc,
    .is-xsoi5p {
        grid-template-columns: 1fr;
    }
    
    .js-l2iuao {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cfvvvr,
    .c-t6r90l {
        flex-direction: column;
        text-align: center;
    }
    
    ._aegqfx,
    .x-y7zsf5 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-httpg4 {
        font-size: 32px;
    }
    
    .m-v048af,
    .el-t6qqu9 {
        font-size: 28px;
    }
    
    .el-il9fts,
    .ngtkqw,
    ._qwp0gm,
    .is-j8jy00,
    .ui-p3occc,
    .ril26f,
    .ui-rj2z59,
    ._yrfenk,
    .is-g2wdzr,
    .u5vcxv,
    .el-ymn0g7,
    ._iti18h {
        grid-template-columns: 1fr;
    }
    
    .js-l2iuao {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-wj2axm,
    ._vuvlt3,
    .s-xi612d {
        flex-direction: column;
    }
    
    .s-a19c3u {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .is-m1b5i9 {
        bottom: 20px;
        right: 20px;
    }
    
    .c-vmjhnd {
        display: none;
    }
    
    .js-ftmv6p {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._ekypcn {
        grid-template-columns: 1fr;
    }
    
    .x-gmbz9p {
        grid-template-columns: 1fr;
    }
    
    .el-nt8axp {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-u21hrg {
        flex-direction: column;
        gap: 8px;
    }
    
    .el-blwxuq {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .vefjdt,
    .is-m1b5i9,
    .x-d0wsga,
    .el-k7zvty {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
