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

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

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

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

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

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

.x-x4v1f6 {
    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-g2xkbn {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._nipvuc {
    width: 100%;
}

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

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

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

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

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

.el-j3nagu {
    max-width: 700px;
}

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

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

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

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

.c-wm7rxw {
    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-phuyaz {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._o1psub {
    font-size: 24px;
}

._gmxbil {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.js-ioq2g9:hover .is-tyy139 img {
    transform: scale(1.1);
}

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

.ui-kaxnsk {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-bvre6k {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-c6f6nc {
    text-align: center;
}

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

.ui-c6f6nc h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

.el-zft9un {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.m-k10da0:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.ui-tjqhho.active ._qv6vjb {
    transform: rotate(45deg);
}

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

.ui-tjqhho.active .s-z9p1wl {
    max-height: 500px;
}

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

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

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

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

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

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

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

.c-fl7gf7:hover .is-ee9qe5 img {
    transform: scale(1.05);
}

._qoo25j {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-uhyksw {
    font-size: 20px;
}

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

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

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

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

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

._fd07ow .el-z5in25 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.s-t1resd h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.s-t1resd h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.m-lrkb8y {
    margin: 16px 0 32px;
}

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

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

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

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

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

.js-s54kay {
    width: 100%;
    margin-bottom: 24px;
}

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

.js-s54kay td {
    padding: 12px 0;
    font-size: 14px;
}

.js-s54kay td:first-child {
    color: var(--text-secondary);
}

.js-s54kay td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

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

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

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

.el-naw3b8 {
    margin-bottom: 32px;
}

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

.m-o9gx3r {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.m-o9gx3r p {
    margin-bottom: 16px;
}

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

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

.m-o9gx3r li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

._qk3ycp li,
.x-gwd8z4 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

._qk3ycp li:last-child,
.x-gwd8z4 li:last-child {
    border-bottom: none;
}

._qk3ycp a,
.x-gwd8z4 a {
    font-size: 14px;
    color: var(--text-secondary);
}

._qk3ycp a:hover,
.x-gwd8z4 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.is-b2iysq h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c-i2tesp h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

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

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

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

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

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

._aflawv 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-g2xkbn {
        display: none;
    }
    
    ._n841hb {
        display: flex;
    }
    
    .js-emgexp {
        font-size: 40px;
    }
    
    .x-ntysao,
    .k20k9d,
    ._wq5xbk,
    .el-ffxnux,
    .js-v86osl,
    .m-htohg5,
    .ui-tz9m8r,
    ._usz59b {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-fwobrf,
    ._jplu4d,
    .is-o01ua9,
    .is-n6qovm {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-jrm1nz,
    ._vmjblo,
    .ui-sn9mdn {
        grid-template-columns: 1fr;
    }
    
    .x-y4qv50 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fl147k,
    .c-krk4js {
        flex-direction: column;
        text-align: center;
    }
    
    .s-znldk6,
    .el-tdxzez {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .js-emgexp {
        font-size: 32px;
    }
    
    .x-txtz80,
    .m-m4ah80 {
        font-size: 28px;
    }
    
    .x-ntysao,
    .k20k9d,
    ._wq5xbk,
    .el-ffxnux,
    .js-v86osl,
    .is-fwobrf,
    ._jplu4d,
    .is-o01ua9,
    .is-n6qovm,
    .m-htohg5,
    .ui-tz9m8r,
    ._usz59b {
        grid-template-columns: 1fr;
    }
    
    .x-y4qv50 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .c-qcevli,
    .s-mlo2cb,
    .ebyra9 {
        flex-direction: column;
    }
    
    .ui-oxwamw {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .m-lx4tye {
        bottom: 20px;
        right: 20px;
    }
    
    .is-vc7oeb {
        display: none;
    }
    
    .m-t1sfrz {
        padding: 16px;
        border-radius: 50%;
    }
    
    .s-rhtjiu {
        grid-template-columns: 1fr;
    }
    
    .m-na4vkw {
        grid-template-columns: 1fr;
    }
    
    .ui-a1mqv1 {
        flex-direction: column;
        gap: 12px;
    }
    
    .c-y6b4zm {
        flex-direction: column;
        gap: 8px;
    }
    
    .js-iadfms {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .m-gw5duc,
    .m-lx4tye,
    .m-wvt4bp,
    .s-jgpi8d {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
