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

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

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

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

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

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

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

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

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

.is-rorgn3:hover,
.is-rorgn3.m-c8lshq {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

.ui-jbai9a a {
    color: var(--text-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

.m-bpd2gu {
    width: 100%;
}

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

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

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

.el-nyehuu::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-xshfvk {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
}

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

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

.js-oioga5 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

.ui-d64ld4 {
    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-gvqyx9 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.js-xkv7w2 p strong {
    color: var(--primary);
}

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

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

.x-gtz6z3 {
    font-size: 24px;
}

.x-zr4vzd {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.c-fvprg9:hover .x-n6wwoc img {
    transform: scale(1.1);
}

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

.m-e875a5 {
    padding: 20px;
}

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

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

.s-re4zz0 {
    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
   ======================================== */
.el-aez5lt {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-ube8k7 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.is-s77bc2 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-jw62cn {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.c-o30zrp:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.s-c17qia.active .c-wuqlp8 {
    transform: rotate(45deg);
}

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

.s-c17qia.active ._pl95d0 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.m-y785hj:hover .dec136 img {
    transform: scale(1.05);
}

.le3cvh {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-zzrxje {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ui-zzrxje img {
    width: 48px;
    height: 48px;
}

.ui-zzrxje span {
    font-size: 20px;
    font-weight: 700;
}

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

.f3idfm h4,
.s-kcvi6y h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.is-ggja8g {
    display: flex;
    gap: 12px;
}

.is-ggja8g img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

._q5022t {
    font-size: 20px;
}

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

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

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

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

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

.ui-kkvtri .c-p4iz2z {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.ui-ebr8id h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.ui-ebr8id h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-tyhbvl {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-tl266m li,
.is-y1kn0r li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.c-tl266m li:last-child,
.is-y1kn0r li:last-child {
    border-bottom: none;
}

.c-tl266m a,
.is-y1kn0r a {
    font-size: 14px;
    color: var(--text-secondary);
}

.c-tl266m a:hover,
.is-y1kn0r a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-rpjlw5 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .c-iw6fd6 {
        display: none;
    }
    
    .is-xc5zyz {
        display: flex;
    }
    
    .c-volwiq {
        font-size: 40px;
    }
    
    .m-dr38uy,
    .is-q8hwqz,
    .m-sxb936,
    .el-rtxim4,
    ._s09kyw,
    .s-esnxb9,
    .is-svhe4p,
    ._jcyofx {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-fg06w2,
    .m-qsbtmh,
    .is-e4z7nq,
    .x-vs9tzl {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m-o9popt,
    .c-wd658v,
    .m-w4dfoa {
        grid-template-columns: 1fr;
    }
    
    .x-xzldta {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-c6oc25,
    .s-zadmdr {
        flex-direction: column;
        text-align: center;
    }
    
    .el-saue4i,
    .m-mnk1ie {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-volwiq {
        font-size: 32px;
    }
    
    .s-gvqyx9,
    .h1r3fw {
        font-size: 28px;
    }
    
    .m-dr38uy,
    .is-q8hwqz,
    .m-sxb936,
    .el-rtxim4,
    ._s09kyw,
    .el-fg06w2,
    .m-qsbtmh,
    .is-e4z7nq,
    .x-vs9tzl,
    .s-esnxb9,
    .is-svhe4p,
    ._jcyofx {
        grid-template-columns: 1fr;
    }
    
    .x-xzldta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .js-oioga5,
    .x-ycjlx9,
    .m-g4bo5f {
        flex-direction: column;
    }
    
    ._yq18bi {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    ._rigjfs {
        bottom: 20px;
        right: 20px;
    }
    
    .el-htdleg {
        display: none;
    }
    
    .is-djxkez {
        padding: 16px;
        border-radius: 50%;
    }
    
    .js-ulll1k {
        grid-template-columns: 1fr;
    }
    
    ._poz6fr {
        grid-template-columns: 1fr;
    }
    
    ._n5x4fs {
        flex-direction: column;
        gap: 12px;
    }
    
    .djq3o6 {
        flex-direction: column;
        gap: 8px;
    }
    
    .js-da1qt6 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .x-f21isw,
    ._rigjfs,
    .s-olsixo,
    .js-o08323 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
