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

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

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

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

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

.x-vxp6kx img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-i6hio4: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;
}

.s-m8v74j {
    padding: 10px 20px;
    font-size: 14px;
}

.ui-c4lzxt {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._id2av2 {
    font-size: 24px;
}

.x-arigj2 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.m-mx0m2e:hover .x-so3ouu img {
    transform: scale(1.1);
}

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

.el-rqbjuv {
    padding: 20px;
}

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

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

.s-i4ywd5 {
    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-ny9r12 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-owl67o img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.m-csoycq {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-eb1u4x.active .x-vgzwpx {
    transform: rotate(45deg);
}

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

.is-eb1u4x.active .yag6w7 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.jehcxv:hover .is-mgpahn img {
    transform: scale(1.05);
}

._u10ehx {
    padding: 20px;
}

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

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

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

.is-t151wh {
    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
   ======================================== */
.x-hc1gw3 {
    background: var(--bg-card);
}

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

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

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

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

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

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

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

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

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

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

.c-hli9mr {
    display: flex;
    gap: 12px;
}

.c-hli9mr 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)
   ======================================== */
._ehh2nh {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-zsggzk {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-rwhyuc {
    margin-bottom: 24px;
}

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

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

._ktrmig {
    margin-bottom: 32px;
}

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

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

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

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

.x-fcxao2 p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.el-tbb1km li,
.is-danb5e li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.el-tbb1km li:last-child,
.is-danb5e li:last-child {
    border-bottom: none;
}

.el-tbb1km a,
.is-danb5e a {
    font-size: 14px;
    color: var(--text-secondary);
}

.el-tbb1km a:hover,
.is-danb5e a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    ._ijkak8 {
        display: none;
    }
    
    .el-o67zk1 {
        display: flex;
    }
    
    .ui-pmdxjp {
        font-size: 40px;
    }
    
    .c-eb4r36,
    .c-mzbr2y,
    .is-xg9j4q,
    .c-mhsyw2,
    .el-pjv1gj,
    .js-p8pher,
    .el-kx9tua,
    .m-hjyali {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-ohl3n1,
    .s-l6s6ft,
    .el-hu1y4u,
    .ui-zzda88 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-qwye29,
    .m-ja87i7,
    .c-a7fk8l {
        grid-template-columns: 1fr;
    }
    
    .is-ot367u {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._ir6enq,
    ._hc2nzd {
        flex-direction: column;
        text-align: center;
    }
    
    .j7nr9b,
    .eul7sq {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ui-pmdxjp {
        font-size: 32px;
    }
    
    .cz121p,
    .dttwq3 {
        font-size: 28px;
    }
    
    .c-eb4r36,
    .c-mzbr2y,
    .is-xg9j4q,
    .c-mhsyw2,
    .el-pjv1gj,
    .x-ohl3n1,
    .s-l6s6ft,
    .el-hu1y4u,
    .ui-zzda88,
    .js-p8pher,
    .el-kx9tua,
    .m-hjyali {
        grid-template-columns: 1fr;
    }
    
    .is-ot367u {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-ermf5c,
    .m-runrsy,
    .m-pkxnbt {
        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%;
    }
    
    .ui-sh5jk7 {
        grid-template-columns: 1fr;
    }
    
    .dgpcwi {
        grid-template-columns: 1fr;
    }
    
    .s-g1jn17 {
        flex-direction: column;
        gap: 12px;
    }
    
    .ui-c1phza {
        flex-direction: column;
        gap: 8px;
    }
    
    .m-a2ygb7 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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