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

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

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

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

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

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

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

.m-jkqa03:hover,
.m-jkqa03.x-f2vxyj {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

.el-sabq8i {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.4);
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-pvpffz {
    width: 100%;
}

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

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

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

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

.krq4ni {
    max-width: 700px;
}

.js-uqdbjm {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.is-zuub0n {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

.m-ji3ns8 {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yjbbvz {
    font-size: 24px;
}

.js-kipyrz {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.el-ad24u3:hover .x-qf9t5a img {
    transform: scale(1.1);
}

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

.s-uthvhv {
    padding: 20px;
}

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

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

.ui-vih0sg {
    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-vhvjmd {
    background: var(--bg-dark);
}

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

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

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

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

.s-gqsntu {
    font-size: 18px;
    margin-bottom: 12px;
}

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

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

.ui-gj7z7t {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.m-go50mr {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.m-k4amgk {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-dcwggt {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-lrg73c {
    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-lrg73c:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.ui-syb3yh.active .el-nhd2ds {
    transform: rotate(45deg);
}

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

.ui-syb3yh.active .x-b2fbv7 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-dl1r6r:hover .ui-b4jsag img {
    transform: scale(1.05);
}

.s-hu7jzn {
    padding: 20px;
}

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

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

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

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

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

.ui-aczyx3 h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.ui-aczyx3 h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

.bgbcfr {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

.ui-vel7kt img {
    width: 48px;
    height: 48px;
}

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

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

._vk5772 h4,
.is-hqhlb4 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.m-sybocj {
    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-fys9h7 {
    font-size: 20px;
}

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

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

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

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

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

.m169u5 .el-f71z62 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-m181ml p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.s-tetdv4 li,
.w334ub li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.s-tetdv4 li:last-child,
.w334ub li:last-child {
    border-bottom: none;
}

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

.s-tetdv4 a:hover,
.w334ub a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.is-yu4p2d {
    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-htb2ex h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-g6n05l ul {
    margin-bottom: 24px;
}

.js-g6n05l 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-yeatai {
        display: none;
    }
    
    .ui-bphqsj {
        display: flex;
    }
    
    .js-uqdbjm {
        font-size: 40px;
    }
    
    .js-unytlu,
    .ui-pluyaw,
    .q6vzqt,
    .js-kn19xi,
    .js-pt1298,
    .js-anmxyg,
    .is-i2alo3,
    .is-ke48fo {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._gcy8hg,
    .js-vyy4l2,
    .s-nmwlth,
    .js-odar7n {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-jiivk3,
    .c-clk07l,
    .bw077t {
        grid-template-columns: 1fr;
    }
    
    .s-kxwbhq {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-fmrgfj,
    .is-z9ux3g {
        flex-direction: column;
        text-align: center;
    }
    
    .x-ncehjf,
    .m-go50mr {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .js-uqdbjm {
        font-size: 32px;
    }
    
    .pwmmrw,
    .is-we085p {
        font-size: 28px;
    }
    
    .js-unytlu,
    .ui-pluyaw,
    .q6vzqt,
    .js-kn19xi,
    .js-pt1298,
    ._gcy8hg,
    .js-vyy4l2,
    .s-nmwlth,
    .js-odar7n,
    .js-anmxyg,
    .is-i2alo3,
    .is-ke48fo {
        grid-template-columns: 1fr;
    }
    
    .s-kxwbhq {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .is-zuub0n,
    .el-qi5ayt,
    .bgbcfr {
        flex-direction: column;
    }
    
    .ui-beo015 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .m-p5ch3h {
        bottom: 20px;
        right: 20px;
    }
    
    .el-qxecmy {
        display: none;
    }
    
    .m-sybocj {
        padding: 16px;
        border-radius: 50%;
    }
    
    .c-t1qy3d {
        grid-template-columns: 1fr;
    }
    
    .c-cve6db {
        grid-template-columns: 1fr;
    }
    
    ._pnlw6r {
        flex-direction: column;
        gap: 12px;
    }
    
    .ui-i81xcb {
        flex-direction: column;
        gap: 8px;
    }
    
    .ui-mt4ltk {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-zmuu6x,
    .m-p5ch3h,
    .el-kvamt5,
    .jz049r {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
