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

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

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

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

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

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

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

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

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

.m-hn7m58:hover,
.m-hn7m58.js-mfksv9 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-rzj26x {
    padding: 10px 20px;
    font-size: 14px;
}

.js-e5jzw8 {
    width: 100%;
}

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

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

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

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

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

.m-w71ktm {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._pusfu1 {
    font-size: 24px;
}

.ui-fhmbz8 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.el-f0fy1v:hover ._ihhq68 img {
    transform: scale(1.1);
}

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

.s-ljuqrd {
    padding: 20px;
}

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

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

.s-vh497r {
    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
   ======================================== */
.s-rwvb9j {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-cnieks {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.s-rzftbd img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

.el-lnxgdk {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.el-vw3tvg {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g28grx {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hryam4:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.is-hrurgc.active .ui-dakvdy {
    transform: rotate(45deg);
}

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

.is-hrurgc.active .ui-nmakw2 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-gbmmhp:hover .ui-c9bact img {
    transform: scale(1.05);
}

.ui-u7tk7b {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-x3ifeb img {
    width: 48px;
    height: 48px;
}

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

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

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

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

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

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

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

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

.js-lp3n3c {
    display: flex;
    gap: 12px;
}

.js-lp3n3c img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.s-owe4kd {
    font-size: 20px;
}

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

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

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

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

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

._yke0mj .js-stet4d {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-ot4qi5 {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-ezbbjx {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

.js-dj9b3d p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.c-y02osm li,
.is-xmcie4 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.c-y02osm li:last-child,
.is-xmcie4 li:last-child {
    border-bottom: none;
}

.c-y02osm a,
.is-xmcie4 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.c-y02osm a:hover,
.is-xmcie4 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-ow05by ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    ._mostuk {
        display: none;
    }
    
    .m-vl0z9g {
        display: flex;
    }
    
    .d4nlrq {
        font-size: 40px;
    }
    
    .el-qnaond,
    .q0xp2a,
    .s-d75ksn,
    .m-ml3xhh,
    .s-ilmvug,
    .x-x95r5s,
    .ui-ge3463,
    .is-shqc85 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-jn7nn9,
    .c-w8y7ut,
    .x-ctkxlw,
    .c-avs49r {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-ro9zbq,
    .c-s5sul9,
    .uibgws {
        grid-template-columns: 1fr;
    }
    
    .m-r64459 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-dmbe1i,
    .d8eha9 {
        flex-direction: column;
        text-align: center;
    }
    
    .ui-jz9dbr,
    .el-lnxgdk {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .d4nlrq {
        font-size: 32px;
    }
    
    ._jf3u0z,
    .is-thdx0d {
        font-size: 28px;
    }
    
    .el-qnaond,
    .q0xp2a,
    .s-d75ksn,
    .m-ml3xhh,
    .s-ilmvug,
    .ui-jn7nn9,
    .c-w8y7ut,
    .x-ctkxlw,
    .c-avs49r,
    .x-x95r5s,
    .ui-ge3463,
    .is-shqc85 {
        grid-template-columns: 1fr;
    }
    
    .m-r64459 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .c-jy09f4,
    .s-m8xyk3,
    ._b1q1j4 {
        flex-direction: column;
    }
    
    .m-l9y2ke {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .s-ehgbf3 {
        bottom: 20px;
        right: 20px;
    }
    
    .el-txk9cy {
        display: none;
    }
    
    ._wn4vpv {
        padding: 16px;
        border-radius: 50%;
    }
    
    .js-qy71w6 {
        grid-template-columns: 1fr;
    }
    
    .is-n9j9j5 {
        grid-template-columns: 1fr;
    }
    
    .s-lcodm0 {
        flex-direction: column;
        gap: 12px;
    }
    
    .m-h366lj {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-xqv178 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .m-h7lrm8,
    .s-ehgbf3,
    .el-guqj9s,
    .c-vvl7oo {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
