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

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

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

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

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

.el-dcrhzs img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

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

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

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

.s-ib9d3j:hover,
.s-ib9d3j.ui-b4xqo4 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-ijridy {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-qhi3u8 {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.is-a2ucac {
    font-size: 24px;
}

.x-i3teqw {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.x-ymnle9:hover .c-b5y9ls img {
    transform: scale(1.1);
}

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

.c-oeky72 {
    padding: 20px;
}

.c-oeky72 h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

._qvr1v7 {
    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-rrg9n8 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

.st0mjl {
    text-align: center;
}

.x-esdfi8 {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

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

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

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

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

.ui-bi4udf img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-kww00f h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

.is-wh0hjx {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.el-qys745:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.x-hl9msl.active .ui-s5pwq2 {
    transform: rotate(45deg);
}

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

.x-hl9msl.active .s-pdrxsb {
    max-height: 500px;
}

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

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

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

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

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

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

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

.c-zp6bbv:hover .s-p8kh0k img {
    transform: scale(1.05);
}

._qgcg2k {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x8euej {
    display: flex;
    gap: 16px;
}

.s-jhefgv {
    text-align: center;
}

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

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

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

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

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

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

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

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

.el-etrp4h h4,
.ui-s4xjin h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.x-c4fwr2 {
    display: flex;
    gap: 12px;
}

.x-c4fwr2 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.js-idgsce {
    font-size: 20px;
}

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

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

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

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

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

._k0smuu .s-t0nukb {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.js-rydpnf h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.js-rydpnf h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.x-afkzzr {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-he55vq {
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-zs83s2 li:last-child,
.s-i95u3d li:last-child {
    border-bottom: none;
}

.js-zs83s2 a,
.s-i95u3d a {
    font-size: 14px;
    color: var(--text-secondary);
}

.js-zs83s2 a:hover,
.s-i95u3d a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-ew5k3t h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .s-k7kun0 {
        display: none;
    }
    
    .s-s01bsw {
        display: flex;
    }
    
    .ui-hccaoh {
        font-size: 40px;
    }
    
    .c-zebqbe,
    .is-c6aqi0,
    .c-kqi5eg,
    .x-n4xesm,
    .s-h05o7q,
    .s-asycuy,
    .el-dlw9d1,
    .c-w9xi13 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-hty3ol,
    .c-lpqwsk,
    .c-stop8j,
    ._z1hf9c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._ck0f23,
    .s-gu1wv5,
    ._bm3lx8 {
        grid-template-columns: 1fr;
    }
    
    .ui-getaom {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-ww4fyq,
    .ui-l6h32o {
        flex-direction: column;
        text-align: center;
    }
    
    .c-qg0e0y,
    .js-tnj6hz {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ui-hccaoh {
        font-size: 32px;
    }
    
    .ui-bjqa9a,
    .js-kxrbz7 {
        font-size: 28px;
    }
    
    .c-zebqbe,
    .is-c6aqi0,
    .c-kqi5eg,
    .x-n4xesm,
    .s-h05o7q,
    .el-hty3ol,
    .c-lpqwsk,
    .c-stop8j,
    ._z1hf9c,
    .s-asycuy,
    .el-dlw9d1,
    .c-w9xi13 {
        grid-template-columns: 1fr;
    }
    
    .ui-getaom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .c-kl41mk,
    .ui-xwes1z,
    .x8euej {
        flex-direction: column;
    }
    
    .el-lqumqf {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .c-jgnmqs {
        bottom: 20px;
        right: 20px;
    }
    
    .x-c0rcsq {
        display: none;
    }
    
    ._tz002q {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-lpsbhs {
        grid-template-columns: 1fr;
    }
    
    .x-ttvrky {
        grid-template-columns: 1fr;
    }
    
    .y3ig8e {
        flex-direction: column;
        gap: 12px;
    }
    
    ._m621io {
        flex-direction: column;
        gap: 8px;
    }
    
    ._suexfk {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .js-i0lzlc,
    .c-jgnmqs,
    .js-hgrc18,
    ._wizxue {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
