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

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

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

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

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

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

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

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

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

.el-c6a6qc:hover,
.el-c6a6qc.x-jiigf8 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.d9gvtj {
    width: 100%;
}

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

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

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

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

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

.ui-zqmygu {
    max-width: 700px;
}

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

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

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

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

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

.s-lbryqr {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-hus5kp {
    font-size: 24px;
}

.raisd9 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.c-nt7ben:hover .k7tdnz img {
    transform: scale(1.1);
}

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

.ui-p4cjgi {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-w3m9bn img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.olx31h {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ao3m11 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.is-ehb40w {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.is-b0r9dr:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.s-bkip28.active .is-ri3slt {
    transform: rotate(45deg);
}

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

.s-bkip28.active .s-j0fzjo {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-dwdp0m:hover .lxhcf3 img {
    transform: scale(1.05);
}

.el-pmb734 {
    padding: 20px;
}

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

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

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

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

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

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

.c-rm6hjr h2 strong {
    color: var(--accent);
}

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

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

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

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

.js-jz8zh4 h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

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

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

.js-c4wijy {
    display: flex;
    gap: 16px;
}

.ee91kv {
    text-align: center;
}

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

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

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

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

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

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

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

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

.m-g7m8mj h4,
.el-ufvhkx h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.c-z3plwt {
    display: flex;
    gap: 12px;
}

.c-z3plwt img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.js-o5cnwo {
    font-size: 20px;
}

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

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

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

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

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

.bn37s6 .ui-t8osk6 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-u52hty {
    margin-bottom: 32px;
}

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

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

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

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

.m-y8ij4n p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.pw5os8 li,
.ui-hjp1tf li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.pw5os8 li:last-child,
.ui-hjp1tf li:last-child {
    border-bottom: none;
}

.pw5os8 a,
.ui-hjp1tf a {
    font-size: 14px;
    color: var(--text-secondary);
}

.pw5os8 a:hover,
.ui-hjp1tf a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-q1buyy h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

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

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

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

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

.a9jq2d ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .x-s6f8tl {
        display: none;
    }
    
    .is-p6rm3i {
        display: flex;
    }
    
    .is-bj1pyv {
        font-size: 40px;
    }
    
    .s-wuho32,
    .js-uml53d,
    .x-re3li0,
    ._eomw68,
    .is-xklv4c,
    ._bfb2qn,
    .ui-qjzwx2,
    .x-m6bzrx {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-af8u9s,
    .js-omqshp,
    .m-sk3vb3,
    .m-qgvg2g {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-koetds,
    .el-i3mmg5,
    .is-xzo4dq {
        grid-template-columns: 1fr;
    }
    
    .is-s9c7h1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-sb0vn3,
    .el-cippoi {
        flex-direction: column;
        text-align: center;
    }
    
    .is-pz6itf,
    .m-n9ns5y {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .is-bj1pyv {
        font-size: 32px;
    }
    
    .el-bw1slx,
    .is-d20c31 {
        font-size: 28px;
    }
    
    .s-wuho32,
    .js-uml53d,
    .x-re3li0,
    ._eomw68,
    .is-xklv4c,
    .c-af8u9s,
    .js-omqshp,
    .m-sk3vb3,
    .m-qgvg2g,
    ._bfb2qn,
    .ui-qjzwx2,
    .x-m6bzrx {
        grid-template-columns: 1fr;
    }
    
    .is-s9c7h1 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-gp3tie,
    .c-o47lkt,
    .js-c4wijy {
        flex-direction: column;
    }
    
    .el-nc59jj {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-d9l6k0 {
        bottom: 20px;
        right: 20px;
    }
    
    .is-wxeem4 {
        display: none;
    }
    
    .js-ofykm7 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-q6mhdo {
        grid-template-columns: 1fr;
    }
    
    .js-phrocr {
        grid-template-columns: 1fr;
    }
    
    .mo1lz3 {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-qtr23s {
        flex-direction: column;
        gap: 8px;
    }
    
    .x-z2jwj4 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .js-tw9sbd,
    .js-d9l6k0,
    .is-itz8u3,
    ._oqdjiv {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
