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

/* CSS Variables */
:root {
    --primary: #1C1C1C;
    --primary-dark: {{primary_color_dark}};
    --secondary: #1565C0;
    --accent: #ffd700;
    --bg-dark: #0a0a1a;
    --bg-card: #12122a;
    --bg-light: #1a1a3a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Container */
.m-v5phiw {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

.wz0ff9:hover,
.wz0ff9.el-c9gzjy {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-zx22qb {
    width: 100%;
}

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

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

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

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

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

.x-nhq3g1 {
    max-width: 700px;
}

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

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

.m-ethik0 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

.is-rcmgaw {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

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

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

.s-w3lpb3 {
    text-align: center;
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.ww5kr2 {
    font-size: 24px;
}

.x-ae33fe {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.is-x5z54w:hover .mkridy img {
    transform: scale(1.1);
}

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

.x-wim7a4 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-v8rw1w img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

._er6vej {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-z5zix0 {
    text-align: center;
}

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

.is-z5zix0 h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.el-vvuos0 {
    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-vvuos0:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.el-pml6p7.active ._gyfeqy {
    transform: rotate(45deg);
}

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

.el-pml6p7.active .is-k0nkk7 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.c-h82ku1:hover .m-wtnp3t img {
    transform: scale(1.05);
}

._al9dej {
    padding: 20px;
}

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

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

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

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

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

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

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

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

.el-ncqyt9 {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

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

.is-feyy20 {
    text-align: center;
}

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

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

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

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

.m-ws34jy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-ws34jy img {
    width: 48px;
    height: 48px;
}

.m-ws34jy span {
    font-size: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

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

.c-cqi6j0 {
    display: flex;
    gap: 12px;
}

.c-cqi6j0 img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

.c-vfe44e {
    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-xa6pow {
    font-size: 20px;
}

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

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

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

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

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

.c-v0zuil .m-v5phiw {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ui-mlzras {
    margin: 16px 0 32px;
}

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

.ui-mlzras li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

.m-qur8y4 {
    margin-bottom: 24px;
}

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

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

.ko1pcx {
    margin-bottom: 32px;
}

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

.el-b62451 {
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

.el-b62451 p {
    margin-bottom: 16px;
}

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

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

.el-b62451 li {
    margin-bottom: 8px;
    list-style: disc;
}

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

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

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

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

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

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

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

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

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

.js-isgnv2 li:last-child,
.tdc0h9 li:last-child {
    border-bottom: none;
}

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

.js-isgnv2 a:hover,
.tdc0h9 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.s-uqoesi {
    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-o57b73 h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-auxrtc ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .gc7953 {
        display: none;
    }
    
    .is-gmh5kq {
        display: flex;
    }
    
    .s-rm29ej {
        font-size: 40px;
    }
    
    .s-cqf3ts,
    .c-xr9typ,
    .c-cu5ew5,
    .ui-e8v21n,
    .is-d3al6e,
    ._sl9nvw,
    .el-m8jfm8,
    .el-f3yna6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-hrxqro,
    ._ebj0zq,
    .s-e3498r,
    ._dpv8v9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-jej01k,
    .el-pdwtee,
    .ahhth1 {
        grid-template-columns: 1fr;
    }
    
    .js-wzm8w6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-a9i0gu,
    .fqxmxa {
        flex-direction: column;
        text-align: center;
    }
    
    .js-jmgocm,
    .x-gayjyi {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-rm29ej {
        font-size: 32px;
    }
    
    .is-vpba0m,
    ._ukay2h {
        font-size: 28px;
    }
    
    .s-cqf3ts,
    .c-xr9typ,
    .c-cu5ew5,
    .ui-e8v21n,
    .is-d3al6e,
    .s-hrxqro,
    ._ebj0zq,
    .s-e3498r,
    ._dpv8v9,
    ._sl9nvw,
    .el-m8jfm8,
    .el-f3yna6 {
        grid-template-columns: 1fr;
    }
    
    .js-wzm8w6 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .m-ethik0,
    .el-ncqyt9,
    .ui-dhbhfa {
        flex-direction: column;
    }
    
    .l587gg {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .x-y97hdc {
        bottom: 20px;
        right: 20px;
    }
    
    .s-q7plug {
        display: none;
    }
    
    .c-vfe44e {
        padding: 16px;
        border-radius: 50%;
    }
    
    .m-japsa1 {
        grid-template-columns: 1fr;
    }
    
    .is-gg4zk9 {
        grid-template-columns: 1fr;
    }
    
    .c-u2b3vk {
        flex-direction: column;
        gap: 12px;
    }
    
    .ui-ca7ni1 {
        flex-direction: column;
        gap: 8px;
    }
    
    ._ox7ybm {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-zfgds5,
    .x-y97hdc,
    ._lrxcj4,
    .s-cgpeyb {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
