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

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

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

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

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

.is-y9vnai img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.c-m85j6j {
    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-ww7k8b {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.js-x8d4s1:hover,
.js-x8d4s1._nqb2k1 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-bmgfgu {
    width: 100%;
}

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

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

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

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

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

.jkah7e {
    max-width: 700px;
}

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

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

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

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

.s-nx8exf {
    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-p6gao3 {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._d6z7pp {
    font-size: 24px;
}

.crs0sh {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.m-p0aecr:hover ._wqi5ui img {
    transform: scale(1.1);
}

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

.s-d12zeg {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-uq3mq6 {
    font-size: 32px;
}

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

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

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

.js-lwrous {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-blq2cg {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

.c-hl4658 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-s59j93.active .x-zgrj7z {
    transform: rotate(45deg);
}

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

.is-s59j93.active .m-m8spnv {
    max-height: 500px;
}

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

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

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

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

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

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

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

._mocvwa:hover .el-ltn3lj img {
    transform: scale(1.05);
}

.x-osphug {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-n6for6 h4,
.c-ysy2ns h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c-xyrbmj {
    font-size: 20px;
}

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

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

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

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

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

.m-pm5xfv ._edajgi {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c-r4whaa {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-gnbmoi {
    margin-bottom: 32px;
}

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

.ui-h9anul {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.ui-h9anul p {
    margin-bottom: 16px;
}

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

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

.ui-h9anul li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.is-wmidzb li,
.m-a5x0nx li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.is-wmidzb li:last-child,
.m-a5x0nx li:last-child {
    border-bottom: none;
}

.is-wmidzb a,
.m-a5x0nx a {
    font-size: 14px;
    color: var(--text-secondary);
}

.is-wmidzb a:hover,
.m-a5x0nx a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-s9lu1p 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-ww7k8b {
        display: none;
    }
    
    .a3ihqk {
        display: flex;
    }
    
    .ui-b8uxc2 {
        font-size: 40px;
    }
    
    .is-ycctq2,
    .m-a70xb2,
    .m-ouimzh,
    .c-r4zjtt,
    .r3x3wr,
    ._tx94ax,
    .ui-o46vmw,
    .js-we6u5a {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-ns489d,
    ._ymekrp,
    .m-gfga2h,
    .c-t20u93 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-e1vui8,
    .js-xdd2kx,
    .js-gvz3lm {
        grid-template-columns: 1fr;
    }
    
    ._wbjbhn {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-lwrous,
    ._udofqb {
        flex-direction: column;
        text-align: center;
    }
    
    .el-wx10er,
    .c-r2pgfv {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ui-b8uxc2 {
        font-size: 32px;
    }
    
    .s-gkeni0,
    .x-y46rhh {
        font-size: 28px;
    }
    
    .is-ycctq2,
    .m-a70xb2,
    .m-ouimzh,
    .c-r4zjtt,
    .r3x3wr,
    .m-ns489d,
    ._ymekrp,
    .m-gfga2h,
    .c-t20u93,
    ._tx94ax,
    .ui-o46vmw,
    .js-we6u5a {
        grid-template-columns: 1fr;
    }
    
    ._wbjbhn {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    ._m0ma2m,
    .m-turi1s,
    .js-trhp5t {
        flex-direction: column;
    }
    
    ._yqqu8i {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .m-thar5v {
        bottom: 20px;
        right: 20px;
    }
    
    .m-vmhpmo {
        display: none;
    }
    
    .x-ag111v {
        padding: 16px;
        border-radius: 50%;
    }
    
    .ui-s340fz {
        grid-template-columns: 1fr;
    }
    
    .x-drrifg {
        grid-template-columns: 1fr;
    }
    
    .qmb40r {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-eyylu7 {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-wagyrr {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .rxc8sq,
    .m-thar5v,
    .ui-feh3xi,
    .is-e55ekb {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
