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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-b6nwi9 {
    width: 100%;
}

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

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

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

.js-i8z3su::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-kguqtb {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
}

.s-w5d12m {
    max-width: 700px;
}

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

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

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

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

.s-oq0i04 {
    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-lbig3w {
    text-align: center;
    margin-bottom: 48px;
}

.el-pycynp {
    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-lh2lz0 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-njyyph {
    font-size: 24px;
}

.el-rch0ci {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

._wf5o85:hover .el-gvfmta img {
    transform: scale(1.1);
}

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

.ui-duukuq {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-pyp3ig {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

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

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

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

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

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

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

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

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

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

.c-yu4hu4 {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-uwubxr:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.m-cv5cqm.active .ui-yqv1pr {
    transform: rotate(45deg);
}

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

.m-cv5cqm.active .wdttg6 {
    max-height: 500px;
}

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

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

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

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

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

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

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

.el-empwb9:hover .x-ixx2lp img {
    transform: scale(1.05);
}

.s-mobme6 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

.c-gnn6kh {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

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

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

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

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

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

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

.m-umdtx5 {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

.js-cbs6lq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.js-cbs6lq img {
    width: 48px;
    height: 48px;
}

.js-cbs6lq span {
    font-size: 20px;
    font-weight: 700;
}

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

.c-tprbi9 h4,
.c-nfafjo h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.kln3j5 {
    font-size: 20px;
}

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

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

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

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

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

.is-ky9cpi .is-ehm9cu {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.el-pt05qt {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

.pwo6fi {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-wfam23 li:last-child,
.m-y385u8 li:last-child {
    border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .is-glgk7h {
        display: none;
    }
    
    .el-eyrbbz {
        display: flex;
    }
    
    .s-jdib0l {
        font-size: 40px;
    }
    
    .ui-hkuufg,
    .m-pt3rvt,
    .ui-swgpur,
    .s-ol1iha,
    .el-p5k4ee,
    .is-eb4wmn,
    .x-st76hk,
    .m-qs0dvh {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._k7ccud,
    ._vdrfq9,
    .s-ig15jv,
    .js-d1ccj0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sx37rt,
    .c-f8yyfw,
    .js-vruq7o {
        grid-template-columns: 1fr;
    }
    
    .is-jxuc43 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .x-c0pyrx,
    .c-ff0wiv {
        flex-direction: column;
        text-align: center;
    }
    
    .s-ntxgod,
    .xb0hct {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s-jdib0l {
        font-size: 32px;
    }
    
    .el-lh2lz0,
    .lijc3n {
        font-size: 28px;
    }
    
    .ui-hkuufg,
    .m-pt3rvt,
    .ui-swgpur,
    .s-ol1iha,
    .el-p5k4ee,
    ._k7ccud,
    ._vdrfq9,
    .s-ig15jv,
    .js-d1ccj0,
    .is-eb4wmn,
    .x-st76hk,
    .m-qs0dvh {
        grid-template-columns: 1fr;
    }
    
    .is-jxuc43 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .m-xl90z9,
    .c-gnn6kh,
    .m-umdtx5 {
        flex-direction: column;
    }
    
    .c-n8l7u2 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .el-x80s3l {
        bottom: 20px;
        right: 20px;
    }
    
    .m-lzb2ch {
        display: none;
    }
    
    .el-iuaf5y {
        padding: 16px;
        border-radius: 50%;
    }
    
    .x-vvxohi {
        grid-template-columns: 1fr;
    }
    
    ._j9kegl {
        grid-template-columns: 1fr;
    }
    
    .s-bt7man {
        flex-direction: column;
        gap: 12px;
    }
    
    .js-t9krtn {
        flex-direction: column;
        gap: 8px;
    }
    
    ._dvwr1m {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .c-stx7eh,
    .el-x80s3l,
    .el-txhrbm,
    .l35v1q {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
