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

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

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

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

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

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

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

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

.x-k2kfts:hover,
.x-k2kfts.c-mtf211 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-lelfad {
    padding: 10px 20px;
    font-size: 14px;
}

.s-y4dnra {
    width: 100%;
}

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

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

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

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

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

._h6nho7 {
    max-width: 700px;
}

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

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

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

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

.egkvt9 {
    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-lqk4gp {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-jdui7s {
    font-size: 24px;
}

.s-jaspmr {
    position: relative;
}

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

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

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

.is-exsx5s {
    font-size: 14px;
    opacity: 0.9;
}

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

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

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

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

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

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

._pd71e6:hover .ui-ty14i6 img {
    transform: scale(1.1);
}

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

.m-p9eju8 {
    padding: 20px;
}

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

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

.js-h7klh7 {
    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
   ======================================== */
.js-c05upp {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

.el-n6ipx1 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

.m-zzkkxh img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

.ui-avhtym {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

._xf3njf {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._y0xi34 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-ec6zc8.active .m-p68oc8 {
    transform: rotate(45deg);
}

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

.s-ec6zc8.active .ui-bpcl4b {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-nlpni3:hover .ra7b08 img {
    transform: scale(1.05);
}

._aw7kgq {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-u3s9le {
    display: flex;
    gap: 16px;
}

.el-lsy4v2 {
    text-align: center;
}

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

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

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

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

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

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

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

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

.c-jx6uvu h4,
.s-rc9bxy h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.el-nbdwx7 {
    display: flex;
    gap: 12px;
}

.el-nbdwx7 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

.s-n2vyb4 {
    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-q1v5k9 {
    font-size: 20px;
}

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

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

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

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

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

.is-qglvcj ._z7xxfe {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-we71is {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.js-kc648g {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-u5pmvl li,
.js-hxahnh li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.el-u5pmvl li:last-child,
.js-hxahnh li:last-child {
    border-bottom: none;
}

.el-u5pmvl a,
.js-hxahnh a {
    font-size: 14px;
    color: var(--text-secondary);
}

.el-u5pmvl a:hover,
.js-hxahnh a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.n7z89h {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-skpqia 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-nvtapj {
        display: none;
    }
    
    .c-z0w987 {
        display: flex;
    }
    
    .x-fvmx98 {
        font-size: 40px;
    }
    
    ._rgbk4e,
    ._wns2m4,
    ._vs8yvq,
    .m-dfmryq,
    .s-cyr15p,
    .m-ubc4vw,
    ._rsman0,
    .js-iqp8np {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-dpuj6f,
    .gsvxk9,
    .el-r37zbz,
    .m-ohu5g9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._vv70n3,
    .js-gln1vj,
    .s-dkokok {
        grid-template-columns: 1fr;
    }
    
    .c-e2zz6u {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._l0lb0g,
    .x-k3ailk {
        flex-direction: column;
        text-align: center;
    }
    
    .rj2vr2,
    .ui-avhtym {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .x-fvmx98 {
        font-size: 32px;
    }
    
    .c-t98lbn,
    .is-lwp1mg {
        font-size: 28px;
    }
    
    ._rgbk4e,
    ._wns2m4,
    ._vs8yvq,
    .m-dfmryq,
    .s-cyr15p,
    .s-dpuj6f,
    .gsvxk9,
    .el-r37zbz,
    .m-ohu5g9,
    .m-ubc4vw,
    ._rsman0,
    .js-iqp8np {
        grid-template-columns: 1fr;
    }
    
    .c-e2zz6u {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    ._yx3e0k,
    .js-deiwxf,
    .m-u3s9le {
        flex-direction: column;
    }
    
    .m-dw1w8j {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .ujgkeh {
        bottom: 20px;
        right: 20px;
    }
    
    .s-oqmrtm {
        display: none;
    }
    
    .s-n2vyb4 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .js-ognjuk {
        grid-template-columns: 1fr;
    }
    
    .s-b9vh0p {
        grid-template-columns: 1fr;
    }
    
    .is-mlhqkr {
        flex-direction: column;
        gap: 12px;
    }
    
    .ziw8fc {
        flex-direction: column;
        gap: 8px;
    }
    
    .s-lvjhdl {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .x-y58qex,
    .ujgkeh,
    .el-wqt6ks,
    .c-yjbikf {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
