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

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

/* ========================================
   Header & Navigation
   ======================================== */
._qopwch {
    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-ygfxoj {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.s-wwqsgc:hover,
.s-wwqsgc.c-sqosji {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.ui-b7jqo7 {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-rq62qa {
    width: 100%;
}

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

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

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

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

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

.m-bmbe3x {
    max-width: 700px;
}

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

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

.el-shcgwl {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._woqc5b {
    font-size: 24px;
}

.m-ojjeu9 {
    position: relative;
}

.m-ojjeu9 img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

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

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

.el-zbnjz2:hover .s-x95wf2 img {
    transform: scale(1.1);
}

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

.c-ng0hyf {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-usblr9 img {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

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

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

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

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

.is-hio6ll {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.s-wshpya h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

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

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

.x-mrnq57:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.m-xzem0l.active .x-e1etks {
    transform: rotate(45deg);
}

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

.m-xzem0l.active .ui-o3pnkm {
    max-height: 500px;
}

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

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

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

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

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

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

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

.is-hze0ua:hover ._i2tvy2 img {
    transform: scale(1.05);
}

.ui-v1c71v {
    padding: 20px;
}

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

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

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

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

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

.s-ezeohc h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.s-ezeohc h2 strong {
    color: var(--accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x-cm96pr img {
    width: 48px;
    height: 48px;
}

.x-cm96pr span {
    font-size: 20px;
    font-weight: 700;
}

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

.x-c5w7j2 h4,
.mlmwl9 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.el-gwxx0v {
    display: flex;
    gap: 12px;
}

.el-gwxx0v img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

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

.m-fg8zw3 {
    font-size: 20px;
}

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

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

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

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

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

.ui-xdjb5g ._iei8n2 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.m-pa0gmm h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.m-pa0gmm h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.is-gfsy3g {
    margin: 16px 0 32px;
}

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

.is-gfsy3g li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.is-dpt4bh {
    margin-bottom: 32px;
}

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

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

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

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

.s-z6ozpm p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.ui-kc1noc li,
.p9seed li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.ui-kc1noc li:last-child,
.p9seed li:last-child {
    border-bottom: none;
}

.ui-kc1noc a,
.p9seed a {
    font-size: 14px;
    color: var(--text-secondary);
}

.ui-kc1noc a:hover,
.p9seed a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._qyiyfj ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .js-x9ds5s {
        display: none;
    }
    
    .m-yrstjj {
        display: flex;
    }
    
    ._av6z4e {
        font-size: 40px;
    }
    
    .zyrizx,
    .s-uunqtz,
    .el-c82und,
    .is-ofuuj0,
    .x-lq9oaz,
    .kbasj1,
    .is-bqcnxz,
    ._obk5vb {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-regrko,
    .is-bf10mo,
    .x-rrxao0,
    .x-y3fwgy {
        grid-template-columns: repeat(2, 1fr);
    }
    
    ._nbjpjd,
    .c-qbc2yj,
    ._nix3sb {
        grid-template-columns: 1fr;
    }
    
    .js-zppvmw {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .is-z3czvb,
    .ui-yweptx {
        flex-direction: column;
        text-align: center;
    }
    
    .x-d1qzpe,
    ._j6pigh {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    ._av6z4e {
        font-size: 32px;
    }
    
    .is-nhqt1h,
    .js-l1hng0 {
        font-size: 28px;
    }
    
    .zyrizx,
    .s-uunqtz,
    .el-c82und,
    .is-ofuuj0,
    .x-lq9oaz,
    .el-regrko,
    .is-bf10mo,
    .x-rrxao0,
    .x-y3fwgy,
    .kbasj1,
    .is-bqcnxz,
    ._obk5vb {
        grid-template-columns: 1fr;
    }
    
    .js-zppvmw {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .el-shcgwl,
    .s-zlulor,
    .ui-bqpzx5 {
        flex-direction: column;
    }
    
    .x-rkxw09 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .x-ms6cs1 {
        bottom: 20px;
        right: 20px;
    }
    
    .c-gtqlfq {
        display: none;
    }
    
    .s-dgi8su {
        padding: 16px;
        border-radius: 50%;
    }
    
    .is-wvltud {
        grid-template-columns: 1fr;
    }
    
    .c-ft2rdf {
        grid-template-columns: 1fr;
    }
    
    .m-jgl33i {
        flex-direction: column;
        gap: 12px;
    }
    
    .c-gy9acv {
        flex-direction: column;
        gap: 8px;
    }
    
    ._laznos {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    ._qopwch,
    .x-ms6cs1,
    .xao56c,
    .ui-xccthc {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
