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

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

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

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

.ui-bw9vj9 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ui-bw9vj9 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.m-zvtyli:hover,
.m-zvtyli.s-uvfbqy {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

.x-dh0d27 {
    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-dh0d27:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary), 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-foif8w {
    width: 100%;
}

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

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

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

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

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

._atavwa {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-de2ve9 {
    font-size: 24px;
}

._kjn910 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.js-rkatuh:hover .js-kt7p3q img {
    transform: scale(1.1);
}

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

._jlk8dr {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-a2eeef {
    text-align: center;
}

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

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

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

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

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

.c-dg1pv3 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.c-dg1pv3 h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

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

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

._bo8i57 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-qz81u8 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-f3i4vl:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

._ztokij.active .ui-bg0kbu {
    transform: rotate(45deg);
}

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

._ztokij.active .nxttzf {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-t4pqsv:hover .c-gopa24 img {
    transform: scale(1.05);
}

.c-nmgkd3 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-y3gaz1 {
    display: flex;
    gap: 12px;
}

.m-y3gaz1 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.el-su3m4v {
    font-size: 20px;
}

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

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

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

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

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

.s-ll4grk .s-jhgnmd {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-yyhro7 {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

._w81mvq {
    margin-bottom: 24px;
}

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

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

._c4kvub {
    margin-bottom: 32px;
}

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

.is-jf2hvc {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.is-jf2hvc p {
    margin-bottom: 16px;
}

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

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

.is-jf2hvc li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

.el-ai93xv li,
.js-lcjdrs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.el-ai93xv li:last-child,
.js-lcjdrs li:last-child {
    border-bottom: none;
}

.el-ai93xv a,
.js-lcjdrs a {
    font-size: 14px;
    color: var(--text-secondary);
}

.el-ai93xv a:hover,
.js-lcjdrs a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zbxpki ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .s-w6z7as {
        display: none;
    }
    
    .c-id3szs {
        display: flex;
    }
    
    .s-ohsogi {
        font-size: 40px;
    }
    
    .qll662,
    .cx7yzd,
    .ui-xzuxw1,
    .s-s8wfgn,
    .x-n4ntze,
    .b1l5wm,
    .wlmp2c,
    .is-gzv154 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-xm47s0,
    .js-plbobh,
    .is-bzy7hy,
    .s-o9zaod {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-uvat0d,
    .s-qdk8g1,
    .m-v33obt {
        grid-template-columns: 1fr;
    }
    
    .m-u5j3f4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-xysfg4,
    .vughp7 {
        flex-direction: column;
        text-align: center;
    }
    
    .k0audh,
    .jha32y {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-ohsogi {
        font-size: 32px;
    }
    
    .r620ca,
    .m-jsw9a4 {
        font-size: 28px;
    }
    
    .qll662,
    .cx7yzd,
    .ui-xzuxw1,
    .s-s8wfgn,
    .x-n4ntze,
    .is-xm47s0,
    .js-plbobh,
    .is-bzy7hy,
    .s-o9zaod,
    .b1l5wm,
    .wlmp2c,
    .is-gzv154 {
        grid-template-columns: 1fr;
    }
    
    .m-u5j3f4 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x-xsl26o,
    .m-jejnio,
    .is-elmvqv {
        flex-direction: column;
    }
    
    .m-a9z5ui {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .c-qoahl2 {
        bottom: 20px;
        right: 20px;
    }
    
    ._d4vj1z {
        display: none;
    }
    
    .js-clq2sy {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._er1x87 {
        grid-template-columns: 1fr;
    }
    
    .m-s157pz {
        grid-template-columns: 1fr;
    }
    
    .c-jdh4v2 {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-l2nfsy {
        flex-direction: column;
        gap: 8px;
    }
    
    .ui-rxguez {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .m-marz2u,
    .c-qoahl2,
    .s-ix2bcw,
    .is-fkga66 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
