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

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

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

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

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

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

.m-z4pvxs {
    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-cibm2m {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.og2fc3:hover,
.og2fc3.m-iczs0u {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-xuvjwc {
    background: #fff;
    color: var(--bg-dark);
}

.is-xuvjwc:hover {
    background: var(--accent);
}

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

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

.c-xbh6w7 {
    padding: 10px 20px;
    font-size: 14px;
}

.ouj3w0 {
    width: 100%;
}

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

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

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

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

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

.is-oiakwo {
    max-width: 700px;
}

.el-s67x3l {
    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-xd8hv5 {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._apwdw8 {
    font-size: 24px;
}

.el-xw3ut0 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.is-rs1ap4:hover .c-hgnchf img {
    transform: scale(1.1);
}

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

.c-xdzdpw {
    padding: 20px;
}

.c-xdzdpw h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

._i0xq1p {
    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
   ======================================== */
.c-wazblf {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._gievkd {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-xrj113:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.ui-t8zpza.active .js-gcycqk {
    transform: rotate(45deg);
}

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

.ui-t8zpza.active .s-k2h7uf {
    max-height: 500px;
}

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

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

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

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

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

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

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

.js-zqheog:hover .kz6lkf img {
    transform: scale(1.05);
}

._x4n7ve {
    padding: 20px;
}

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

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

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

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

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

.x-jvf528 h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.x-jvf528 h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

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

._cbr9by {
    text-align: center;
}

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

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

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

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

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

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

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

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

.x-u7rib5 h4,
.ui-b1oxl5 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.x-u7rib5 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.x-u7rib5 a:hover {
    color: var(--primary);
}

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

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

.lz0nj0 {
    display: flex;
    gap: 12px;
}

.lz0nj0 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.kkx17n {
    font-size: 20px;
}

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

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

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

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

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

.ui-konxir .m-d9eq77 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-m78mgc {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-srsmio {
    margin-bottom: 24px;
}

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

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

._f8t5vb {
    margin-bottom: 32px;
}

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

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

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

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

.x-t67522 p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-oqlmpf li:last-child,
.el-z31py6 li:last-child {
    border-bottom: none;
}

.ui-oqlmpf a,
.el-z31py6 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.ui-oqlmpf a:hover,
.el-z31py6 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-r8r7cg ul {
    margin-bottom: 24px;
}

.x-r8r7cg 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-cibm2m {
        display: none;
    }
    
    .c-r1sh2r {
        display: flex;
    }
    
    .el-s67x3l {
        font-size: 40px;
    }
    
    ._ns0mzb,
    .m-a74yu4,
    .s-xgwm9c,
    .c-l9ur34,
    .c-w38jzv,
    .c-q4h2d8,
    .wqnzdd,
    .m-b3tyrd {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-dl2f6m,
    .js-wu9qzs,
    .js-ztpogu,
    .ui-agb7yi {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .joatm9,
    .is-fbvnr4,
    ._b5rhtv {
        grid-template-columns: 1fr;
    }
    
    ._s9g3sb {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-fxtgd3,
    .vi7nz6 {
        flex-direction: column;
        text-align: center;
    }
    
    .ui-rqenzg,
    .el-fu5gp1 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .el-s67x3l {
        font-size: 32px;
    }
    
    .x-osxk2q,
    .c-rrqakw {
        font-size: 28px;
    }
    
    ._ns0mzb,
    .m-a74yu4,
    .s-xgwm9c,
    .c-l9ur34,
    .c-w38jzv,
    .x-dl2f6m,
    .js-wu9qzs,
    .js-ztpogu,
    .ui-agb7yi,
    .c-q4h2d8,
    .wqnzdd,
    .m-b3tyrd {
        grid-template-columns: 1fr;
    }
    
    ._s9g3sb {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .is-thooot,
    ._kl1ls9,
    .p45fnx {
        flex-direction: column;
    }
    
    .el-up0w5z {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .js-spk9ww {
        bottom: 20px;
        right: 20px;
    }
    
    .el-z7sfte {
        display: none;
    }
    
    .el-hx4omq {
        padding: 16px;
        border-radius: 50%;
    }
    
    .ui-b85j0k {
        grid-template-columns: 1fr;
    }
    
    .js-hx747i {
        grid-template-columns: 1fr;
    }
    
    .m-thkkvu {
        flex-direction: column;
        gap: 12px;
    }
    
    .c-f6l7qj {
        flex-direction: column;
        gap: 8px;
    }
    
    .js-e9qkmw {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .s-cane7h,
    .js-spk9ww,
    .is-j8hkb8,
    .el-dlnxwn {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
