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

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

/* ========================================
   Header & Navigation
   ======================================== */
.is-vnptec {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

.sbcepw:hover,
.sbcepw.mabwiw {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-s6zk2j {
    padding: 10px 20px;
    font-size: 14px;
}

.el-kr6flq {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.js-timkz4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-z2jrhe {
    font-size: 24px;
}

.is-wijclw {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.is-dvmyam:hover .js-znxemc img {
    transform: scale(1.1);
}

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

.el-f232cb {
    padding: 20px;
}

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

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

.eodmf0 {
    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
   ======================================== */
.el-xitetk {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

.aapjez {
    text-align: center;
}

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

.c-h695vz {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.uf6wgz img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.is-s3rurl {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-h88wrq:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.x-y8iz8g.active .s-ij5jr0 {
    transform: rotate(45deg);
}

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

.x-y8iz8g.active .el-lo40hh {
    max-height: 500px;
}

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

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

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

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

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

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

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

.s-wyw3fe:hover .el-cckbn6 img {
    transform: scale(1.05);
}

.m-ov9zyp {
    padding: 20px;
}

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

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

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

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

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

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

.el-rm6z81 h2 strong {
    color: var(--accent);
}

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

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

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

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

.is-ghiy51 h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

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

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

.ui-wtsrrg {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

.el-xg0p2u img {
    width: 48px;
    height: 48px;
}

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

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

.is-ishqy0 h4,
.ui-y6ipjz h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.s-n6ofk4 {
    display: flex;
    gap: 12px;
}

.s-n6ofk4 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.is-kdq8ww {
    font-size: 20px;
}

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

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

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

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

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

.el-lmg8d1 .ui-kgj74v {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-ve7d5f {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-yvpazq {
    margin-bottom: 24px;
}

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

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

.c-apuk9d {
    margin-bottom: 32px;
}

.c-apuk9d img {
    width: 100%;
    border-radius: var(--radius);
}

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

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

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

.ui-nojrmv p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.c-les6ha li,
.x-iwifgy li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.c-les6ha li:last-child,
.x-iwifgy li:last-child {
    border-bottom: none;
}

.c-les6ha a,
.x-iwifgy a {
    font-size: 14px;
    color: var(--text-secondary);
}

.c-les6ha a:hover,
.x-iwifgy a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.el-yc1ahw {
    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-at8778 h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .c-qvna8n {
        display: none;
    }
    
    .m-eumg8l {
        display: flex;
    }
    
    .c-tpl576 {
        font-size: 40px;
    }
    
    .ui-im4sqe,
    .c-hx3ldx,
    .c-j48l3l,
    .m-lcvrk3,
    .m2chl5,
    .m-q6mrru,
    .is-y55fja,
    .ui-j134y1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-sac8sz,
    .is-xy1gmp,
    .js-je0rb6,
    .is-c26kb5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._d1b3sg,
    .el-vukkr3,
    .s-s38jvo {
        grid-template-columns: 1fr;
    }
    
    .is-awx1pt {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-zq5nsc,
    .ui-b9cifk {
        flex-direction: column;
        text-align: center;
    }
    
    .x-j2hf15,
    .ui-fnzgqf {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-tpl576 {
        font-size: 32px;
    }
    
    .ui-eo6dci,
    ._tajx95 {
        font-size: 28px;
    }
    
    .ui-im4sqe,
    .c-hx3ldx,
    .c-j48l3l,
    .m-lcvrk3,
    .m2chl5,
    .c-sac8sz,
    .is-xy1gmp,
    .js-je0rb6,
    .is-c26kb5,
    .m-q6mrru,
    .is-y55fja,
    .ui-j134y1 {
        grid-template-columns: 1fr;
    }
    
    .is-awx1pt {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-x9p2l3,
    .s-cw0tgr,
    .ui-wtsrrg {
        flex-direction: column;
    }
    
    .ui-h3dygf {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .epnld0 {
        bottom: 20px;
        right: 20px;
    }
    
    .el-tixilc {
        display: none;
    }
    
    .s-q96f8q {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._h65iop {
        grid-template-columns: 1fr;
    }
    
    .dehg66 {
        grid-template-columns: 1fr;
    }
    
    .is-f73p2e {
        flex-direction: column;
        gap: 12px;
    }
    
    ._oc7p7b {
        flex-direction: column;
        gap: 8px;
    }
    
    .is-xdvens {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .is-vnptec,
    .epnld0,
    .m-knvhxx,
    .js-udjg3y {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
