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

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

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

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

.js-lmglv0 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.js-lmglv0 img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

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

.m-f7asmg {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.x-ai9ul2 {
    background: #fff;
    color: var(--bg-dark);
}

.x-ai9ul2:hover {
    background: var(--accent);
}

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

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

.js-pkp6v3 {
    padding: 10px 20px;
    font-size: 14px;
}

.s-h5xjl2 {
    width: 100%;
}

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

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

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

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

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

.is-kpbxpl {
    max-width: 700px;
}

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

.s-leohgy {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.el-nh7q15 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sgn7xm {
    font-size: 24px;
}

.el-tnoely {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.m-nbdyef:hover .c-hrqj3c img {
    transform: scale(1.1);
}

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

.m-ffas8t {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-hyu4g9 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.c-w59j0e {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-z01m9q a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

.x-nj47o6 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.ui-pc0rjm {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.js-gn6f9e.active .m-vumj1o {
    transform: rotate(45deg);
}

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

.js-gn6f9e.active .s-kqq0ck {
    max-height: 500px;
}

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

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

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

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

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

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

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

.c-eyf5a4:hover .s-o1pzgk img {
    transform: scale(1.05);
}

.x-llrv3g {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ip0q7d {
    text-align: center;
}

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

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

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

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

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

.js-bzagwm img {
    width: 48px;
    height: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-we75rk {
    font-size: 20px;
}

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

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

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

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

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

.x-n6xxgg .m-dgvr5s {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.c-np2b3k h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.c-np2b3k h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.c-ozyq2t {
    margin: 16px 0 32px;
}

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

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

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

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

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

.ui-ioi9mk {
    width: 100%;
    margin-bottom: 24px;
}

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

.ui-ioi9mk td {
    padding: 12px 0;
    font-size: 14px;
}

.ui-ioi9mk td:first-child {
    color: var(--text-secondary);
}

.ui-ioi9mk td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.ui-wnnv7h {
    margin-bottom: 24px;
}

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

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

._jhjp42 {
    margin-bottom: 32px;
}

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

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

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

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

.s-kwdx9j p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.js-b8cqs8 li:last-child,
.js-jok381 li:last-child {
    border-bottom: none;
}

.js-b8cqs8 a,
.js-jok381 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.js-b8cqs8 a:hover,
.js-jok381 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .x-sqbrue {
        display: none;
    }
    
    .s-h9lgl3 {
        display: flex;
    }
    
    .s-t089la {
        font-size: 40px;
    }
    
    .el-sqb1j8,
    .c-l226dx,
    .s-dary5o,
    .d21k1s,
    .s-xhgytq,
    .m-abztni,
    .c-dmw49p,
    ._eo0asv {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-xi0jkh,
    .s-plmnl4,
    .is-jp9r5l,
    .m-aack05 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-bsj9ul,
    .is-mia55b,
    .x-j8llhk {
        grid-template-columns: 1fr;
    }
    
    .x-v6sqw4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .a3fodo,
    .js-hfix3w {
        flex-direction: column;
        text-align: center;
    }
    
    .x-cb2owb,
    .el-j7o7gn {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-t089la {
        font-size: 32px;
    }
    
    ._xerz9r,
    .eiz6om {
        font-size: 28px;
    }
    
    .el-sqb1j8,
    .c-l226dx,
    .s-dary5o,
    .d21k1s,
    .s-xhgytq,
    .js-xi0jkh,
    .s-plmnl4,
    .is-jp9r5l,
    .m-aack05,
    .m-abztni,
    .c-dmw49p,
    ._eo0asv {
        grid-template-columns: 1fr;
    }
    
    .x-v6sqw4 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s-leohgy,
    .m-gwpkve,
    .m-xqp0ja {
        flex-direction: column;
    }
    
    .el-jpnhal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .el-wz6sxp {
        bottom: 20px;
        right: 20px;
    }
    
    .is-r01xem {
        display: none;
    }
    
    .m-nm2o4w {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-lzdr9g {
        grid-template-columns: 1fr;
    }
    
    .x-ezlgtx {
        grid-template-columns: 1fr;
    }
    
    .el-ks92yh {
        flex-direction: column;
        gap: 12px;
    }
    
    .is-cz2a6f {
        flex-direction: column;
        gap: 8px;
    }
    
    .s-asovym {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .x-b7vcx4,
    .el-wz6sxp,
    ._tkudht,
    .ui-e7ihyy {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
