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

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

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

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

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

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

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

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

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

.m-mhyei6:hover,
.m-mhyei6.js-rpvbse {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

/* ========================================
   Buttons
   ======================================== */
.s-kgkwrn {
    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-mx60k4 {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

.mqtpor {
    width: 100%;
}

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

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

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

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

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

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

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

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

.ui-h48v50 {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

.el-blha1m {
    text-align: center;
    margin-bottom: 48px;
}

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

.s-owzhdn {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._wdbks8 {
    font-size: 24px;
}

.el-vnezjz {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

._phjd88:hover ._x2e2dc img {
    transform: scale(1.1);
}

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

.jdm452 {
    padding: 20px;
}

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

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

.js-g88kwt {
    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-izrbwd {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lxoy1c img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.ui-uab8wz {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-bu9wva {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

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

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

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

._rpmg89 {
    text-align: center;
}

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

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

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

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

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

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

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

.el-j9yiek h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

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

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

.c-ks66iy:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.js-vtuh8z.active .c-uh1js9 {
    transform: rotate(45deg);
}

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

.js-vtuh8z.active .is-hoe9mg {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-xy6gav:hover .el-o668kf img {
    transform: scale(1.05);
}

.is-yk33px {
    padding: 20px;
}

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

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

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

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

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

.js-e1sdgk h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.js-e1sdgk h2 strong {
    color: var(--accent);
}

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

.x-ljzgrv {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

.el-v8dveo {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

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

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

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

.s-q07lx5 h4,
.x-va6320 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.h6y5e5 {
    font-size: 20px;
}

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

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

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

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

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

._jcv9iu .js-cnrd13 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-mxv6pm {
    margin-bottom: 24px;
}

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

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

.s-t0gzmc {
    margin-bottom: 32px;
}

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

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

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

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

.is-cl2nv5 p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.el-nqms0u li:last-child,
.el-jrzs5y li:last-child {
    border-bottom: none;
}

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

.el-nqms0u a:hover,
.el-jrzs5y a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.s-vkdooi h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-d4nt55 ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .m-fmr4bw {
        display: none;
    }
    
    ._jno0gz {
        display: flex;
    }
    
    .c-iwiks6 {
        font-size: 40px;
    }
    
    .ui-ndqbos,
    .js-b94dy8,
    .fydwz8,
    .c-uj2jfy,
    ._hx93vc,
    .el-ouoh2o,
    ._f8tg65,
    .ui-ioifht {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-dknlh4,
    .c-l7vf4f,
    .c-fqra2f,
    .m-fslvd9 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-y0nzye,
    .js-qfba7g,
    .is-zz69cl {
        grid-template-columns: 1fr;
    }
    
    .m-awh4ju {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._kzvf2x,
    .el-dp719i {
        flex-direction: column;
        text-align: center;
    }
    
    .c-q6b71p,
    .fu5omu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .c-iwiks6 {
        font-size: 32px;
    }
    
    .s-owzhdn,
    .m-sbf1d6 {
        font-size: 28px;
    }
    
    .ui-ndqbos,
    .js-b94dy8,
    .fydwz8,
    .c-uj2jfy,
    ._hx93vc,
    .c-dknlh4,
    .c-l7vf4f,
    .c-fqra2f,
    .m-fslvd9,
    .el-ouoh2o,
    ._f8tg65,
    .ui-ioifht {
        grid-template-columns: 1fr;
    }
    
    .m-awh4ju {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ui-h48v50,
    .x-ljzgrv,
    .el-v8dveo {
        flex-direction: column;
    }
    
    .m-ew6e3t {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .lls9mg {
        bottom: 20px;
        right: 20px;
    }
    
    .m-vj50f9 {
        display: none;
    }
    
    .ngu03n {
        padding: 16px;
        border-radius: 50%;
    }
    
    .s-a4kioa {
        grid-template-columns: 1fr;
    }
    
    .js-il16vl {
        grid-template-columns: 1fr;
    }
    
    ._r6xilo {
        flex-direction: column;
        gap: 12px;
    }
    
    .c-c3rqtp {
        flex-direction: column;
        gap: 8px;
    }
    
    ._cvzy8c {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .el-cpkyr4,
    .lls9mg,
    .js-z9fna0,
    ._jnmcii {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
