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

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

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

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

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

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

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

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

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

._zb50jf:hover,
._zb50jf.x-s2yg18 {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-ak9zj8 {
    width: 100%;
}

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

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

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

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

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

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

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

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

.x-oy4rqb {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

.js-neaoea {
    text-align: center;
    margin-bottom: 48px;
}

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

.el-t9wagv {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-tks29e {
    font-size: 24px;
}

.js-efiinn {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.s-ps2981:hover .c-qm3p3x img {
    transform: scale(1.1);
}

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

.is-vl8qzb {
    padding: 20px;
}

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

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

.ui-dwp83r {
    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
   ======================================== */
.x-p24zdd {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-ynelbz img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.x-ydvx80 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-nhcemy h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

.s-dpi4jn:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.x-p8mfe3.active .js-hr166n {
    transform: rotate(45deg);
}

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

.x-p8mfe3.active .el-ld5zjt {
    max-height: 500px;
}

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

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

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

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

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

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

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

.x-tjfhag:hover .is-nma2vi img {
    transform: scale(1.05);
}

.is-zrd0i3 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

.is-kdgqyr {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-tsnbmj {
    display: flex;
    gap: 12px;
}

.m-tsnbmj img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.ui-lrf90x {
    font-size: 20px;
}

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

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

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

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

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

.x-l70ish .is-f7sl37 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-q3628r {
    margin: 16px 0 32px;
}

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

.el-q3628r li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

._dvdomv {
    margin-bottom: 32px;
}

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

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

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

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

.itkwuj p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.is-vv5zlu li:last-child,
.el-vi8kz3 li:last-child {
    border-bottom: none;
}

.is-vv5zlu a,
.el-vi8kz3 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.is-vv5zlu a:hover,
.el-vi8kz3 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.c-ahtdon {
    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-vrn0k8 h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-k0g096 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    ._bckpqa {
        display: none;
    }
    
    .c-rnzacg {
        display: flex;
    }
    
    .x13qxj {
        font-size: 40px;
    }
    
    .c-w8jw3j,
    .c-ywbfhu,
    .m-owf5bh,
    .x-dcra8q,
    .el-j0lpsw,
    .c-rb1b0f,
    .el-jyxj1w,
    .p5wwrs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-rqtoxi,
    .ui-y4wg00,
    .el-fz0pe4,
    .ui-apx82z {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._raypsa,
    .x-hyjx8t,
    .el-j2lhak {
        grid-template-columns: 1fr;
    }
    
    .x-oi2nws {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .s-dt5c2h,
    .el-o48ji7 {
        flex-direction: column;
        text-align: center;
    }
    
    .x-urvn2q,
    .m-gaw1nk {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .x13qxj {
        font-size: 32px;
    }
    
    .el-t9wagv,
    .c-s4wlb7 {
        font-size: 28px;
    }
    
    .c-w8jw3j,
    .c-ywbfhu,
    .m-owf5bh,
    .x-dcra8q,
    .el-j0lpsw,
    .ui-rqtoxi,
    .ui-y4wg00,
    .el-fz0pe4,
    .ui-apx82z,
    .c-rb1b0f,
    .el-jyxj1w,
    .p5wwrs {
        grid-template-columns: 1fr;
    }
    
    .x-oi2nws {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x-oy4rqb,
    .is-kdgqyr,
    .mrrkaz {
        flex-direction: column;
    }
    
    ._ijesl9 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .is-qmn30u {
        bottom: 20px;
        right: 20px;
    }
    
    .el-e0lmpi {
        display: none;
    }
    
    .m-xw3avs {
        padding: 16px;
        border-radius: 50%;
    }
    
    .el-kol72v {
        grid-template-columns: 1fr;
    }
    
    .is-bo6fyi {
        grid-template-columns: 1fr;
    }
    
    .c-apgu2u {
        flex-direction: column;
        gap: 12px;
    }
    
    .m-ky6yxy {
        flex-direction: column;
        gap: 8px;
    }
    
    ._cx762p {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .m-nnoa6j,
    .is-qmn30u,
    .x-r05o72,
    .x-vsnj5s {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
