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

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

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

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

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

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

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

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

.el-rtn0zx:hover,
.el-rtn0zx.ui-m0g9cr {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-j3zq3a {
    padding: 10px 20px;
    font-size: 14px;
}

.m-wn54oi {
    width: 100%;
}

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

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

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

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

.s-b7xwgi {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-s7a2qs {
    font-size: 24px;
}

.sbqjb6 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.m-twzpj8:hover .ui-x7yam4 img {
    transform: scale(1.1);
}

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

.x-iqm5l8 {
    padding: 20px;
}

.x-iqm5l8 h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

._l9b0xy {
    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-nz8a28 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

._qjmb43 {
    text-align: center;
}

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

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

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

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

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

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

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

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

.c-fxnive {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.c-im5bi1 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-jn7620.active .js-mf78kr {
    transform: rotate(45deg);
}

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

.is-jn7620.active .m-d6f8fk {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-yth0ty:hover .c-cft5rs img {
    transform: scale(1.05);
}

.el-h70r2d {
    padding: 20px;
}

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

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

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

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

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

.s-esxt86 h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.s-esxt86 h2 strong {
    color: var(--accent);
}

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

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

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

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

.c-t53x2n h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.is-gsd5iu img {
    width: 48px;
    height: 48px;
}

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

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

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

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

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

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

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

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

.ui-m87ndo {
    display: flex;
    gap: 12px;
}

.ui-m87ndo img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

.c-vyh7w9 a {
    color: var(--text-secondary);
}

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

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

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

.nk83xt {
    font-size: 20px;
}

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

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

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

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

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

.is-hfzc7d .ui-gyud0a {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-y9z400 {
    width: 100%;
    margin-bottom: 24px;
}

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

.js-y9z400 td {
    padding: 12px 0;
    font-size: 14px;
}

.js-y9z400 td:first-child {
    color: var(--text-secondary);
}

.js-y9z400 td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

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

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

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

.s-s28scc {
    margin-bottom: 32px;
}

.s-s28scc img {
    width: 100%;
    border-radius: var(--radius);
}

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

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

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

.is-tnn83l p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-q9cu1d li:last-child,
.is-c7sy2w li:last-child {
    border-bottom: none;
}

.ui-q9cu1d a,
.is-c7sy2w a {
    font-size: 14px;
    color: var(--text-secondary);
}

.ui-q9cu1d a:hover,
.is-c7sy2w a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-cxqset ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    ._ic7sca {
        display: none;
    }
    
    .ui-xjjri8 {
        display: flex;
    }
    
    .s-rf754r {
        font-size: 40px;
    }
    
    .m-clea6k,
    .ui-c0hqd8,
    .is-ixmkso,
    .hhzk7b,
    .znw832,
    .is-lu0f17,
    .el-qijzjx,
    .x-cvw0ca {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-hludbh,
    .el-gopfor,
    .m-zejw2o,
    .is-ng4o4w {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-xfyda2,
    .js-lxiqqs,
    .x-fgf7tk {
        grid-template-columns: 1fr;
    }
    
    .el-cjn0qh {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-j7quup,
    .el-gpfgvi {
        flex-direction: column;
        text-align: center;
    }
    
    ._ldaqif,
    .c-fxnive {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-rf754r {
        font-size: 32px;
    }
    
    .js-kxqnhz,
    .m-kaubkr {
        font-size: 28px;
    }
    
    .m-clea6k,
    .ui-c0hqd8,
    .is-ixmkso,
    .hhzk7b,
    .znw832,
    .x-hludbh,
    .el-gopfor,
    .m-zejw2o,
    .is-ng4o4w,
    .is-lu0f17,
    .el-qijzjx,
    .x-cvw0ca {
        grid-template-columns: 1fr;
    }
    
    .el-cjn0qh {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .js-u9o02m,
    .el-qh43ef,
    .js-e6e464 {
        flex-direction: column;
    }
    
    .c-vyh7w9 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .is-iqock4 {
        bottom: 20px;
        right: 20px;
    }
    
    .m-n73l2r {
        display: none;
    }
    
    .c-bab7jz {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-w53djz {
        grid-template-columns: 1fr;
    }
    
    .el-r7ko48 {
        grid-template-columns: 1fr;
    }
    
    .is-nkd4iz {
        flex-direction: column;
        gap: 12px;
    }
    
    .js-s7a4tp {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-kgkzud {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .x-fm6ayk,
    .is-iqock4,
    .ui-g3l8yp,
    .c-y4c3w9 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
