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

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

/* ========================================
   Header & Navigation
   ======================================== */
.s-f0hjy3 {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

.c-m9z5z0:hover,
.c-m9z5z0.is-o6gf7y {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._iefub7 {
    width: 100%;
}

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

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

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

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

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

.js-og7h5z {
    max-width: 700px;
}

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

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

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

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

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

.s-u801v0 {
    text-align: center;
    margin-bottom: 48px;
}

.is-o4w01l {
    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-ylgjrl {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-rrofv1 {
    font-size: 24px;
}

.x-b1yzih {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.x-vzguql:hover .ui-cbjna6 img {
    transform: scale(1.1);
}

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

.el-nys8b4 {
    padding: 20px;
}

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

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

.el-ysejci {
    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-k539h2 {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

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

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

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

.puj5pl {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.m-ozgz2w {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-d58s3v h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

.m-qxp7u2.active .c-f9dt44 {
    transform: rotate(45deg);
}

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

.m-qxp7u2.active .ui-m28s47 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.js-m2jo18:hover .is-hpph1m img {
    transform: scale(1.05);
}

.c-vgzl9f {
    padding: 20px;
}

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

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

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

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

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

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

.is-w5ovq1 h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

.x-d35wey {
    display: flex;
    gap: 16px;
}

.x-jwk9f6 {
    text-align: center;
}

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

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

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

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

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

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

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

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

.x-z1bkf1 h4,
.m-zonxoy h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

._tb94ke {
    display: flex;
    gap: 12px;
}

._tb94ke img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

.iyp303 {
    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-z16g95 {
    font-size: 20px;
}

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

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

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

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

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

.c-j388bp .js-v2grr9 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-o8mmce {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

.x-pm38s3 {
    margin-bottom: 24px;
}

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

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

.m-q7ch6w {
    margin-bottom: 32px;
}

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

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

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

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

.c-yd2ppx p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.m-rh0qg0 li,
.is-wr48d3 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.m-rh0qg0 li:last-child,
.is-wr48d3 li:last-child {
    border-bottom: none;
}

.m-rh0qg0 a,
.is-wr48d3 a {
    font-size: 14px;
    color: var(--text-secondary);
}

.m-rh0qg0 a:hover,
.is-wr48d3 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

.is-hxfypk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-jxk9kx ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .s-gardgg {
        display: none;
    }
    
    ._zs7nzd {
        display: flex;
    }
    
    ._xv5ius {
        font-size: 40px;
    }
    
    .ui-biklf9,
    .c-gszk8o,
    .m-v9cyn0,
    ._wjhlg1,
    .el-j2jv87,
    .x-ostixu,
    .ddabdd,
    .c-qd4eaq {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._y4tj4y,
    .m-z2puxx,
    .el-r2t1sy,
    .x-kdbt4x {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._nc2eqb,
    .m-a5ejtb,
    .c-fhz8ak {
        grid-template-columns: 1fr;
    }
    
    .c-wbxv8b {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-amq67v,
    ._lchjtl {
        flex-direction: column;
        text-align: center;
    }
    
    .is-e4iw2x,
    .m-tatc3s {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    ._xv5ius {
        font-size: 32px;
    }
    
    .is-ylgjrl,
    .is-t8j4i2 {
        font-size: 28px;
    }
    
    .ui-biklf9,
    .c-gszk8o,
    .m-v9cyn0,
    ._wjhlg1,
    .el-j2jv87,
    ._y4tj4y,
    .m-z2puxx,
    .el-r2t1sy,
    .x-kdbt4x,
    .x-ostixu,
    .ddabdd,
    .c-qd4eaq {
        grid-template-columns: 1fr;
    }
    
    .c-wbxv8b {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s-aqa20t,
    .s-tr7n67,
    .x-d35wey {
        flex-direction: column;
    }
    
    .el-uj39xm {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .s-heamli {
        bottom: 20px;
        right: 20px;
    }
    
    .s-fbx6xu {
        display: none;
    }
    
    .iyp303 {
        padding: 16px;
        border-radius: 50%;
    }
    
    .m-cjlwx6 {
        grid-template-columns: 1fr;
    }
    
    .x-bpes4l {
        grid-template-columns: 1fr;
    }
    
    .cipa4h {
        flex-direction: column;
        gap: 12px;
    }
    
    .zqq21q {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-gz8u8a {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .s-f0hjy3,
    .s-heamli,
    .c-cl9ias,
    .el-hxoo5k {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
