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

/* CSS Variables */
:root {
    --primary: #3C096C;
    --primary-dark: {{primary_color_dark}};
    --secondary: #1565C0;
    --accent: #ffd700;
    --bg-dark: #0a0a1a;
    --bg-card: #12122a;
    --bg-light: #1a1a3a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Container */
.ui-lmqbqo {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.js-rtrat9 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.m-kr9ut7:hover,
.m-kr9ut7.x-qynhyy {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.x-utgkb0 {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

.x-h2ekmh {
    background: #fff;
    color: var(--bg-dark);
}

.x-h2ekmh:hover {
    background: var(--accent);
}

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

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

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

.ui-sob4cv {
    width: 100%;
}

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

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

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

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

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

.qetlis {
    max-width: 700px;
}

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

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

.el-cqsu9x {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-vt2qj3 {
    font-size: 24px;
}

.tpuf3w {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.ui-ki3l9b:hover .m-l8ch6f img {
    transform: scale(1.1);
}

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

.s-bt0km2 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-tfyf37 {
    text-align: center;
}

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

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

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

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

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

.m-f28fhl img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

.s-jdfgzo {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.js-vmp74k {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-d1iyay {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.js-u0e7pc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.x-kvtech.active .x-tvkorm {
    transform: rotate(45deg);
}

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

.x-kvtech.active .c-njsoe3 {
    max-height: 500px;
}

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

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

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

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

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

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

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

._y9scrn:hover .is-x6cnw0 img {
    transform: scale(1.05);
}

._vl1h73 {
    padding: 20px;
}

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

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

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

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

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

.m-i1n6mo h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.m-i1n6mo h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

.c-b405gm {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

.ir935u img {
    width: 48px;
    height: 48px;
}

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

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

.m-knjmsu h4,
._kzezqp h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.m-knjmsu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

.js-zh4e3y {
    font-size: 20px;
}

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

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

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

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

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

._fwevk6 .ui-lmqbqo {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._umy1vx {
    margin-bottom: 24px;
}

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

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

.is-mkxfr7 {
    margin-bottom: 32px;
}

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

.m-dri1li {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.m-dri1li p {
    margin-bottom: 16px;
}

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

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

.m-dri1li li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

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

.c-tjqjr8 li:last-child,
.c-q1759y li:last-child {
    border-bottom: none;
}

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

.c-tjqjr8 a:hover,
.c-q1759y a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.s-fzcbk7 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .wp3pnu {
        display: none;
    }
    
    .m-lbeasx {
        display: flex;
    }
    
    .is-jkqyb2 {
        font-size: 40px;
    }
    
    .m-t3dhew,
    .m-bvb9e4,
    .ui-rjq7mr,
    .ui-oexydg,
    .d6tgpj,
    .c-bawbye,
    .is-js8whx,
    .el-mp8202 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._t3cjmp,
    .x-amedaj,
    .c-ggu14y,
    .ui-kl22xk {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-bw9jgd,
    .ui-tw15l0,
    .el-m119p5 {
        grid-template-columns: 1fr;
    }
    
    .dle5nx {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-rqxs2e,
    .c-xz6xmo {
        flex-direction: column;
        text-align: center;
    }
    
    .m-nk3zvp,
    .s-jdfgzo {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .is-jkqyb2 {
        font-size: 32px;
    }
    
    .c-z9hw3h,
    .is-z0k31b {
        font-size: 28px;
    }
    
    .m-t3dhew,
    .m-bvb9e4,
    .ui-rjq7mr,
    .ui-oexydg,
    .d6tgpj,
    ._t3cjmp,
    .x-amedaj,
    .c-ggu14y,
    .ui-kl22xk,
    .c-bawbye,
    .is-js8whx,
    .el-mp8202 {
        grid-template-columns: 1fr;
    }
    
    .dle5nx {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .el-cqsu9x,
    .js-r60zc6,
    .c-b405gm {
        flex-direction: column;
    }
    
    .s-l4klqz {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .is-bvgkbu {
        bottom: 20px;
        right: 20px;
    }
    
    ._wszoki {
        display: none;
    }
    
    .is-jcbvqd {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._u7g85o {
        grid-template-columns: 1fr;
    }
    
    .js-oc6m47 {
        grid-template-columns: 1fr;
    }
    
    .j6jn2m {
        flex-direction: column;
        gap: 12px;
    }
    
    ._htnacd {
        flex-direction: column;
        gap: 8px;
    }
    
    .s-nbu15d {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    ._vukyw4,
    .is-bvgkbu,
    .x-yuzjf2,
    .s-k092fb {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
