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

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

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

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

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

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

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

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

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

.s-ziogqk:hover,
.s-ziogqk.c-uabd0a {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-i51ne2 {
    padding: 10px 20px;
    font-size: 14px;
}

.ui-bcdkzp {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-wb096y {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yjgdoo {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.vuuepz:hover .ui-pj6r1n img {
    transform: scale(1.1);
}

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

.ui-gcuo89 {
    padding: 20px;
}

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

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

.c-wwnmod {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-ypfw6j img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.x-vobi58 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-v60xtl {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

.x-je3nks {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._qvywbl.active .js-su64ui {
    transform: rotate(45deg);
}

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

._qvywbl.active .js-yruchn {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-tws96c:hover .x-ogyi71 img {
    transform: scale(1.05);
}

.m-ybgdro {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-lnjqmh h4,
.x-xhhemr h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tdo3od {
    font-size: 20px;
}

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

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

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

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

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

.ui-d3ks33 ._kg1dgs {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-y4os7t {
    margin-bottom: 24px;
}

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

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

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

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

.c-lyelwo {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.c-lyelwo p {
    margin-bottom: 16px;
}

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

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

.c-lyelwo li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

.c-p4bmmw h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.c-p4bmmw p {
    opacity: 0.9;
    margin-bottom: 20px;
}

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

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

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

.m-u8lfv2 li:last-child,
.ui-vejbfz li:last-child {
    border-bottom: none;
}

.m-u8lfv2 a,
.ui-vejbfz a {
    font-size: 14px;
    color: var(--text-secondary);
}

.m-u8lfv2 a:hover,
.ui-vejbfz a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-pck1j1 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .is-pgxrok {
        display: none;
    }
    
    .m-j7krtk {
        display: flex;
    }
    
    .m-ae7pon {
        font-size: 40px;
    }
    
    .m-a9tftd,
    .el-ndfubj,
    .m-olb3x6,
    .x-z7uecm,
    .ui-jc82f5,
    .m-mojwpz,
    .s-lu2kw4,
    .ui-xrk7o0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x3lakp,
    .x-fwqoui,
    .is-sbxg2f,
    .s-rfhxwr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-qaq3gt,
    .tu68mt,
    .s-m6ttxe {
        grid-template-columns: 1fr;
    }
    
    .ui-nqc88r {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-o4rojy,
    .m-sjidox {
        flex-direction: column;
        text-align: center;
    }
    
    .is-sngiiv,
    .ui-r6uwjb {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .m-ae7pon {
        font-size: 32px;
    }
    
    .ui-njpsrn,
    ._y25ejb {
        font-size: 28px;
    }
    
    .m-a9tftd,
    .el-ndfubj,
    .m-olb3x6,
    .x-z7uecm,
    .ui-jc82f5,
    .x3lakp,
    .x-fwqoui,
    .is-sbxg2f,
    .s-rfhxwr,
    .m-mojwpz,
    .s-lu2kw4,
    .ui-xrk7o0 {
        grid-template-columns: 1fr;
    }
    
    .ui-nqc88r {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-r2h4n7,
    .c-nq7mr7,
    ._wpgpsr {
        flex-direction: column;
    }
    
    .s-mtblbh {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .is-fux4tb {
        bottom: 20px;
        right: 20px;
    }
    
    .ui-bh1yli {
        display: none;
    }
    
    .rxbbbb {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-iqwa1q {
        grid-template-columns: 1fr;
    }
    
    .s-onp5se {
        grid-template-columns: 1fr;
    }
    
    .wc167o {
        flex-direction: column;
        gap: 12px;
    }
    
    .imj57r {
        flex-direction: column;
        gap: 8px;
    }
    
    .m-t4lj5l {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .coqphz,
    .is-fux4tb,
    .ui-cp1wbu,
    .is-zto670 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
