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

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

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

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

.c-sg9wj3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-sg9wj3 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.c-cqw28o:hover,
.c-cqw28o.ui-a0s6z6 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-yn5nsh {
    background: #fff;
    color: var(--bg-dark);
}

.js-yn5nsh:hover {
    background: var(--accent);
}

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

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

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

.c-fxb973 {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h23zlk {
    font-size: 24px;
}

.c-a4ick6 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.js-n2brid:hover .m-gzzjjt img {
    transform: scale(1.1);
}

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

.ui-n8k3nj {
    padding: 20px;
}

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

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

._z469lb {
    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
   ======================================== */
.ui-ehmplr {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

._k0foad {
    text-align: center;
}

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

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

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

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

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

._rhuszj img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.el-tid3r8 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-axlxbc {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.js-vhd9vg.active ._ozxgwj {
    transform: rotate(45deg);
}

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

.js-vhd9vg.active ._dx4ktr {
    max-height: 500px;
}

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

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

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

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

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

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

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

.is-o2tck8:hover .el-tacvgf img {
    transform: scale(1.05);
}

.s-cj7928 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-mily8a img {
    width: 48px;
    height: 48px;
}

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

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

.is-igmjdg h4,
._fxdi9t h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.c-xvuay7 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.is-msaqr0 {
    font-size: 20px;
}

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

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

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

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

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

.is-ur2x09 .c-ohdqtz {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.wtr442 {
    margin: 16px 0 32px;
}

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

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

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

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

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

.m-z2j052 {
    width: 100%;
    margin-bottom: 24px;
}

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

.m-z2j052 td {
    padding: 12px 0;
    font-size: 14px;
}

.m-z2j052 td:first-child {
    color: var(--text-secondary);
}

.m-z2j052 td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mw2unl li:last-child,
.el-wj59jg li:last-child {
    border-bottom: none;
}

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

.mw2unl a:hover,
.el-wj59jg a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-l91nq0 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    ._mchsre {
        display: none;
    }
    
    ._mm7zxm {
        display: flex;
    }
    
    .is-uvhhk9 {
        font-size: 40px;
    }
    
    .js-kqpk27,
    .wt5ary,
    .el-jvh3rf,
    .m-ematlw,
    .ui-ar73ra,
    .x-q7tc2g,
    ._fl9cou,
    .s-p235e0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-s19ogn,
    .is-posqtj,
    .is-yj1gw8,
    .is-w0b3bg {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-dj9mrk,
    .is-rihksh,
    .is-mi72ab {
        grid-template-columns: 1fr;
    }
    
    .el-qfkylq {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-zo80zr,
    .js-opovad {
        flex-direction: column;
        text-align: center;
    }
    
    ._xrgzow,
    .el-d2mc9x {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .is-uvhhk9 {
        font-size: 32px;
    }
    
    .is-kdu9o7,
    .ui-gj756v {
        font-size: 28px;
    }
    
    .js-kqpk27,
    .wt5ary,
    .el-jvh3rf,
    .m-ematlw,
    .ui-ar73ra,
    .js-s19ogn,
    .is-posqtj,
    .is-yj1gw8,
    .is-w0b3bg,
    .x-q7tc2g,
    ._fl9cou,
    .s-p235e0 {
        grid-template-columns: 1fr;
    }
    
    .el-qfkylq {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .c-rjo9ee,
    ._k44pq5,
    .js-i3hl0j {
        flex-direction: column;
    }
    
    .x-cdmrzp {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .s-zh5b0l {
        bottom: 20px;
        right: 20px;
    }
    
    .s-fcsq47 {
        display: none;
    }
    
    .m-t7yla0 {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._yd47qx {
        grid-template-columns: 1fr;
    }
    
    .el-m1xtis {
        grid-template-columns: 1fr;
    }
    
    .el-lqcjsr {
        flex-direction: column;
        gap: 12px;
    }
    
    .s-nysthw {
        flex-direction: column;
        gap: 8px;
    }
    
    .ui-y1mdgn {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-ltv1nt,
    .s-zh5b0l,
    .js-ke70ey,
    .ui-axxvqs {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
