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

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

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

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

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

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

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

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

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

.c-pktgy4:hover,
.c-pktgy4._cjni7q {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-e6ps82 {
    width: 100%;
}

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

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

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

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

.is-ob1ozz {
    max-width: 700px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.s-kdjx20 {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

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

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

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

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

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

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

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

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

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

.x-h5ebxg {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.citxg5:hover .s-bdoua7 img {
    transform: scale(1.1);
}

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

.el-huc0to {
    padding: 20px;
}

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

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

.c-roeorv {
    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
   ======================================== */
.is-ze6ito {
    background: var(--bg-dark);
}

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

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

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

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

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

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

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

.c-qb1bqj {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-g0xmlr {
    font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-ceze7x:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.m-a5wun8.active .m-v0htg2 {
    transform: rotate(45deg);
}

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

.m-a5wun8.active .ui-u4t4up {
    max-height: 500px;
}

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

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

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

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

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

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

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

.js-ht3etc:hover .s-x2naxp img {
    transform: scale(1.05);
}

.ui-s0s5f3 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-rv9yoc {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

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

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

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

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

.m-kv1hzc h4,
.m-qsdbxx h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

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

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

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

.ui-prq08x {
    display: flex;
    gap: 12px;
}

.ui-prq08x img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

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

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

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

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

.s-qeij2p {
    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-oeow6i {
    font-size: 20px;
}

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

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

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

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

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

.m-tpmddj .el-n3mcd0 {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

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

.x-hz4kcu h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.x-hz4kcu h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.s-g8pfn7 {
    margin: 16px 0 32px;
}

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

.s-g8pfn7 li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

.c-qbusq1 {
    margin-bottom: 24px;
}

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

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

.ui-s17o7u {
    margin-bottom: 32px;
}

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

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

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

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

.x-ldp2mq p {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.s9m1yt li,
.c-hh8oo4 li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.s9m1yt li:last-child,
.c-hh8oo4 li:last-child {
    border-bottom: none;
}

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

.s9m1yt a:hover,
.c-hh8oo4 a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.x-fx2od9 h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-i5ycdc ul {
    margin-bottom: 24px;
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .ui-htivuq {
        display: none;
    }
    
    .aumewv {
        display: flex;
    }
    
    .el-py88cw {
        font-size: 40px;
    }
    
    .js-dblvd3,
    .el-j3q4uo,
    .is-nd7cie,
    .js-sjn8el,
    .is-tz3bzn,
    .ui-havlwf,
    .is-n1tf2j,
    .ui-vb84e6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .js-a1fo3h,
    ._ag7602,
    .js-hwa8hr,
    .is-qsa5a3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ui-dsppw8,
    .ui-rs5gz3,
    .js-bu22bv {
        grid-template-columns: 1fr;
    }
    
    .ui-vo29ah {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .el-m06n8n,
    .el-n3ddpy {
        flex-direction: column;
        text-align: center;
    }
    
    .ui-dhulsa,
    .x-hk15nu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .el-py88cw {
        font-size: 32px;
    }
    
    .el-wuj0pz,
    .ui-ursk1i {
        font-size: 28px;
    }
    
    .js-dblvd3,
    .el-j3q4uo,
    .is-nd7cie,
    .js-sjn8el,
    .is-tz3bzn,
    .js-a1fo3h,
    ._ag7602,
    .js-hwa8hr,
    .is-qsa5a3,
    .ui-havlwf,
    .is-n1tf2j,
    .ui-vb84e6 {
        grid-template-columns: 1fr;
    }
    
    .ui-vo29ah {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .x3dnah,
    .s-vsahzv,
    .js-rv9yoc {
        flex-direction: column;
    }
    
    .js-f3jow9 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .c-ntqjlr {
        bottom: 20px;
        right: 20px;
    }
    
    .ui-y0rl32 {
        display: none;
    }
    
    .s-qeij2p {
        padding: 16px;
        border-radius: 50%;
    }
    
    .d4pr9t {
        grid-template-columns: 1fr;
    }
    
    .el-fu19w9 {
        grid-template-columns: 1fr;
    }
    
    .m-btx1ue {
        flex-direction: column;
        gap: 12px;
    }
    
    .m-ri2xre {
        flex-direction: column;
        gap: 8px;
    }
    
    .c-nc0znf {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .ui-mfzgiv,
    .c-ntqjlr,
    .el-al14nh,
    .js-u9778z {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
