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

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

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

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

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

.s-io9hqo img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.is-x46c8i:hover,
.is-x46c8i.ui-dk734m {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-uye0vx {
    background: #fff;
    color: var(--bg-dark);
}

.s-uye0vx:hover {
    background: var(--accent);
}

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

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

.c-ao5fba {
    padding: 10px 20px;
    font-size: 14px;
}

.c-u3riiq {
    width: 100%;
}

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

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

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

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

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

.c-ea45yf {
    max-width: 700px;
}

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

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

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

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

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

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

.c-lxhooy {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

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

.c-uc11hn {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.el-qcay3f {
    font-size: 24px;
}

.m-oeyfu1 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

._wtkbcw:hover .vm2it4 img {
    transform: scale(1.1);
}

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

.is-gb76j4 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

._ztfhdi {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

._uecbqk {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-e4wkyj:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.is-maxed2.active .hnvyd6 {
    transform: rotate(45deg);
}

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

.is-maxed2.active .is-au34mz {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-vfl12i:hover .c-ha6p5r img {
    transform: scale(1.05);
}

.lvuhb9 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

.x-ez0mtc {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

.s-lhmm0q {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

.m-ma5qup img {
    width: 48px;
    height: 48px;
}

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

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

.el-nx1a1g h4,
.x-dw3z5h h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.el-nx1a1g ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

.qwa818 {
    font-size: 20px;
}

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

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

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

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

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

.s-orkpwq ._jw4gn4 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-r3tyo5 {
    margin: 16px 0 32px;
}

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

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

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

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

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

.el-o530fn {
    width: 100%;
    margin-bottom: 24px;
}

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

.el-o530fn td {
    padding: 12px 0;
    font-size: 14px;
}

.el-o530fn td:first-child {
    color: var(--text-secondary);
}

.el-o530fn td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.js-xctu2b {
    margin-bottom: 24px;
}

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

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

.ui-iuxl2n {
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-n6523r li:last-child,
._xnqpej li:last-child {
    border-bottom: none;
}

.s-n6523r a,
._xnqpej a {
    font-size: 14px;
    color: var(--text-secondary);
}

.s-n6523r a:hover,
._xnqpej a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-ybkoa3 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .c9qteu {
        display: none;
    }
    
    .el-tlrqh1 {
        display: flex;
    }
    
    .js-z66qjw {
        font-size: 40px;
    }
    
    .is-s9nspq,
    .el-v79e2n,
    .m-hwy2kx,
    .js-ny96kb,
    .ui-oxbr2u,
    .s-tabgqb,
    .c-wi7j8f,
    ._ybe6f2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-bwg4e8,
    .is-gj1st6,
    .el-s8na8k,
    .js-mwcfeo {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-a53acq,
    .c-uhk75d,
    .pmyzfp {
        grid-template-columns: 1fr;
    }
    
    .el-erzwxw {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-nhx6al,
    .m-rxd77k {
        flex-direction: column;
        text-align: center;
    }
    
    .lp6zeg,
    .c-b02a9x {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .js-z66qjw {
        font-size: 32px;
    }
    
    .s-chgeui,
    .j54vjr {
        font-size: 28px;
    }
    
    .is-s9nspq,
    .el-v79e2n,
    .m-hwy2kx,
    .js-ny96kb,
    .ui-oxbr2u,
    .js-bwg4e8,
    .is-gj1st6,
    .el-s8na8k,
    .js-mwcfeo,
    .s-tabgqb,
    .c-wi7j8f,
    ._ybe6f2 {
        grid-template-columns: 1fr;
    }
    
    .el-erzwxw {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .el-yubyf7,
    .x-ez0mtc,
    .s-lhmm0q {
        flex-direction: column;
    }
    
    .is-r5nu2u {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .x-dg9al0 {
        bottom: 20px;
        right: 20px;
    }
    
    .m-kooj0f {
        display: none;
    }
    
    .is-mnujxv {
        padding: 16px;
        border-radius: 50%;
    }
    
    .c-yhuarz {
        grid-template-columns: 1fr;
    }
    
    .s-zbckct {
        grid-template-columns: 1fr;
    }
    
    ._ltnq4g {
        flex-direction: column;
        gap: 12px;
    }
    
    .el-zk6wsh {
        flex-direction: column;
        gap: 8px;
    }
    
    ._viswct {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .m1vou6,
    .x-dg9al0,
    .ui-ejn0pq,
    .ui-cjwigx {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
