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

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

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

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

.el-c8mi50 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.el-c8mi50 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

._ijkak8:hover,
._ijkak8.x-qoqyxo {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

/* ========================================
   Buttons
   ======================================== */
.c-dniavl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.el-mmhg6n {
    background: #fff;
    color: var(--bg-dark);
}

.el-mmhg6n:hover {
    background: var(--accent);
}

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

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

.m-p083ec {
    padding: 10px 20px;
    font-size: 14px;
}

.s-nzo6dp {
    width: 100%;
}

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

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

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

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

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

.ui-hxn0uc {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-u4s81a {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

.m-fd0k63 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.x-mtdsfb:hover .js-pe1z0n img {
    transform: scale(1.1);
}

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

.el-ublvjo {
    padding: 20px;
}

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

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

.js-tgyydc {
    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
   ======================================== */
.m-pe5fw2 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

.ioy5pj {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-lo18ra {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fh8sbj {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.s-b4ppwb {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.el-u6bhbh:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.c-awu2c8.active .el-cox45v {
    transform: rotate(45deg);
}

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

.c-awu2c8.active .s-l6s6ft {
    max-height: 500px;
}

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

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

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

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

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

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

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

.apfivd:hover .s-f1ayuh img {
    transform: scale(1.05);
}

.js-ct99ns {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.is-r60ai4 h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-capetm h4,
.el-ee8ucv h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-c8x6j8 {
    font-size: 20px;
}

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

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

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

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

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

._f7n1r7 .is-eo8yhf {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-iwmsgz {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

._u10ehx p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

._hc2nzd li:last-child,
.mxz4dz li:last-child {
    border-bottom: none;
}

._hc2nzd a,
.mxz4dz a {
    font-size: 14px;
    color: var(--text-secondary);
}

._hc2nzd a:hover,
.mxz4dz a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .js-wfp8en {
        display: none;
    }
    
    ._w8uolu {
        display: flex;
    }
    
    .is-luwyqo {
        font-size: 40px;
    }
    
    .x-xv7fbo,
    ._acof5q,
    .x-so3ouu,
    .c-kz15ys,
    ._ir6enq,
    .c-hli9mr,
    .ui-c1phza,
    .c-wtqis9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-hm8i4p,
    .m-e8kbv4,
    .el-e6bcq8,
    .js-gpdsvc {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-a3rwne,
    .js-mmh2v9,
    .yag6w7 {
        grid-template-columns: 1fr;
    }
    
    .is-ot367u {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-lo18ra,
    ._m55edg {
        flex-direction: column;
        text-align: center;
    }
    
    .zzyhtm,
    .el-rqbjuv {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .is-luwyqo {
        font-size: 32px;
    }
    
    .cz121p,
    .x-iq4vds {
        font-size: 28px;
    }
    
    .x-xv7fbo,
    ._acof5q,
    .x-so3ouu,
    .c-kz15ys,
    ._ir6enq,
    .m-hm8i4p,
    .m-e8kbv4,
    .el-e6bcq8,
    .js-gpdsvc,
    .c-hli9mr,
    .ui-c1phza,
    .c-wtqis9 {
        grid-template-columns: 1fr;
    }
    
    .is-ot367u {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .is-ao0uwj,
    .m-runrsy,
    .c-lcqsz0 {
        flex-direction: column;
    }
    
    .js-v6u5ew {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .c-maylk8 {
        bottom: 20px;
        right: 20px;
    }
    
    ._e3d7vw {
        display: none;
    }
    
    .el-ne7tam {
        padding: 16px;
        border-radius: 50%;
    }
    
    .c-y6k2ry {
        grid-template-columns: 1fr;
    }
    
    .c-e6e305 {
        grid-template-columns: 1fr;
    }
    
    ._r9b3j9 {
        flex-direction: column;
        gap: 12px;
    }
    
    .jehcxv {
        flex-direction: column;
        gap: 8px;
    }
    
    .js-c280ru {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-gaebny,
    .c-maylk8,
    .js-fdyksa,
    ._w8em9o {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
