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

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

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

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

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

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

.s-adqt3w {
    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-mwpgux {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.ui-u6y025:hover,
.ui-u6y025._z5vouv {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-rp2ldp {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.puh84q {
    font-size: 24px;
}

.ui-fk6bs2 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.el-sn3k14:hover .is-dx5xv6 img {
    transform: scale(1.1);
}

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

._hm91ma {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

._hpf5tc {
    text-align: center;
}

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

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

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

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

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

.js-b0vs26 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

._ku1afu {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-jqhgel:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.u1j3s6.active .c-ec7vtz {
    transform: rotate(45deg);
}

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

.u1j3s6.active .m-wgv83n {
    max-height: 500px;
}

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

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

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

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

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

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

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

.js-zw1dse:hover .ox3y6l img {
    transform: scale(1.05);
}

.s-t2pxcf {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-palqu3 h4,
.ui-dsx41p h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.ui-puabi2 {
    display: flex;
    gap: 12px;
}

.ui-puabi2 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

.x-jzhu4c {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

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

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

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

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

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

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

.c-hhh77a .s-tzzj6l {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.js-hkxej9 {
    margin: 16px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-uiyxnt {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._ns80md li:last-child,
.el-piwbo8 li:last-child {
    border-bottom: none;
}

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

._ns80md a:hover,
.el-piwbo8 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.el-i1eq6f h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mywkrt 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-mwpgux {
        display: none;
    }
    
    .x-oart3k {
        display: flex;
    }
    
    .x-t36w4z {
        font-size: 40px;
    }
    
    .wiklhk,
    ._gtswqg,
    .is-i0f4ae,
    .js-gn40mz,
    .c-ksdgzw,
    .m-uc7le3,
    ._ysw09d,
    .x-iyzyd3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._esxh25,
    .c-ypb23z,
    .ui-ywh6qe,
    ._ycvdfx {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blxjtj,
    .m-r6c9lo,
    .x-yaznxz {
        grid-template-columns: 1fr;
    }
    
    .el-dhj6e9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-vage62,
    .m-jz08vf {
        flex-direction: column;
        text-align: center;
    }
    
    .is-zx12bd,
    .vnq31l {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .x-t36w4z {
        font-size: 32px;
    }
    
    .js-g860wl,
    .c-qanphu {
        font-size: 28px;
    }
    
    .wiklhk,
    ._gtswqg,
    .is-i0f4ae,
    .js-gn40mz,
    .c-ksdgzw,
    ._esxh25,
    .c-ypb23z,
    .ui-ywh6qe,
    ._ycvdfx,
    .m-uc7le3,
    ._ysw09d,
    .x-iyzyd3 {
        grid-template-columns: 1fr;
    }
    
    .el-dhj6e9 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s-ey8w3y,
    .js-x7dxnf,
    .c4bh7o {
        flex-direction: column;
    }
    
    .ipwbsi {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .el-jzjfr3 {
        bottom: 20px;
        right: 20px;
    }
    
    .is-tp5qbp {
        display: none;
    }
    
    .x-jzhu4c {
        padding: 16px;
        border-radius: 50%;
    }
    
    ._vs85tc {
        grid-template-columns: 1fr;
    }
    
    .c-zr7n13 {
        grid-template-columns: 1fr;
    }
    
    .ui-wzl3bt {
        flex-direction: column;
        gap: 12px;
    }
    
    ._jl2m5w {
        flex-direction: column;
        gap: 8px;
    }
    
    .pqvkax {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-eixsy8,
    .el-jzjfr3,
    .ui-babiu1,
    .m-aa6rxv {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
