﻿

/* ============================================
   Slate & Emerald Theme - 深灰+翡翠绿
   ============================================ */

/* ===== 基础样式 ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* 主题色 - 翡翠绿+冰灰（与金系明显区分） */
    --casino-gold: #10b981;
    --casino-gold-dark: #059669;
    --casino-gold-light: #34d399;
    --casino-red: #14b8a6;
    --casino-red-dark: #0d9488;
    --casino-black: #0f172a;
    --casino-dark: #1e293b;
    --casino-dark-blue: #0f172a;
    --casino-blue: #1e293b;
    --casino-green: #10b981;
    --casino-purple: #06b6d4;
    --text-gold: #34d399;
    --text-white: #f1f5f9;
    --text-gray: #94a3b8;
    --surface-dark: #0f172a;
    --surface-card: #1e293b;
}

body {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 35%, #0f172a 100%);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: 'Segoe UI', 'Arial', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 背景装饰 - 翡翠绿光晕（与金系区分） */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(16, 185, 129, 0.07) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

/* ===== 容器 ===== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* 移动端容器调整 */
@media (max-width: 767px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .container {
        padding-right: 8px;
        padding-left: 8px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ===== 标题样式 ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: calc(1.75rem + 2vw);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Hero H1 smaller font size */
.hero-h1 {
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-h1 {
        font-size: 1.5rem;
    }
}

/* Hero Description Styles */
.hero-description {
    margin: 1.5rem 0;
}

.hero-description p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.hero-description strong {
    color: var(--casino-gold);
    font-weight: 700;
}

@media (max-width: 767px) {
    .hero-description p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

h2 {
    font-size: calc(1.5rem + 1vw);
    font-weight: 700;
}

@media (min-width: 1200px) {
    h2 {
        font-size: 2.5rem;
    }
}

h3 {
    font-size: calc(1.3rem + 0.8vw);
}

@media (min-width: 1200px) {
    h3 {
        font-size: 2rem;
    }
}

h4 {
    font-size: calc(1.2rem + 0.5vw);
}

@media (min-width: 1200px) {
    h4 {
        font-size: 1.5rem;
    }
}

/* 标题中的链接样式 - 166bet3 金色 */
h1 .title-link,
h2 .title-link,
h3 .title-link {
    text-decoration: none;
    color: var(--casino-gold);
    transition: all 0.3s ease;
    position: relative;
}

h1 .title-link:hover,
h2 .title-link:hover,
h3 .title-link:hover {
    color: var(--casino-gold-light);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
    transform: scale(1.02);
    display: inline-block;
}

/* 文本中的链接样式 */
.text-link {
    color: var(--casino-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}

.text-link:hover {
    color: var(--casino-gold-light);
    border-bottom: 1px solid var(--casino-gold);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* 移动端标题调整 */
@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
}

p {
    margin: 0 0 1rem 0;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== 图片样式 ===== */
img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

img:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ===== 按钮样式 ===== */
.btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    border: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

/* 主要按钮 - 翡翠绿 */
.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: 1px solid rgba(52, 211, 153, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* 成功按钮 - 青绿 */
.btn-success {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #fff;
    border: 1px solid rgba(20, 184, 166, 0.4);
}

.btn-success:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* 移动端按钮调整 */
@media (max-width: 767px) {
    section .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 5px 0;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 18px;
    }
}

/* ===== 布局工具类 ===== */
.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

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

.text-white {
    color: var(--text-white) !important;
}

.text-gold {
    color: var(--casino-gold) !important;
}

.text-decoration-none {
    text-decoration: none;
}

/* ===== 背景色 - 深灰绿 ===== */
.bg-primary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(16, 185, 129, 0.02) 10px,
        rgba(16, 185, 129, 0.02) 20px
    );
    pointer-events: none;
}

/* ===== 间距工具类 ===== */
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 767px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ===== 圆角 ===== */
.rounded-2 {
    border-radius: 8px;
}

.rounded-5 {
    border-radius: 20px;
}

/* ===== 行和列 ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    box-sizing: border-box;
    width: calc(100% + 30px);
}

/* 移动端row调整 */
@media (max-width: 767px) {
    .row {
        margin-right: -10px;
        margin-left: -10px;
        width: calc(100% + 20px);
    }
}

@media (max-width: 480px) {
    .row {
        margin-right: -8px;
        margin-left: -8px;
        width: calc(100% + 16px);
    }
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

/* ===== Header 顶部导航 ===== */
.site-header {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0 0;
}

.site-header .container {
    padding-left: 18px;
    padding-right: 18px;
}

/* 第一行：Logo(左) + 按钮(右)，与LOGO、右边缘、彼此之间均有间距 */
.header-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
}

.site-header .logo-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.site-header .logo-link:hover {
    transform: scale(1.03);
}

.site-header .logo-link img {
    display: block;
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.25));
}

.site-header .logo-link:hover img {
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4));
}

/* 顶部按钮：圆角、与LOGO/右边缘/彼此有间距，带特效 */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-header:hover::before {
    width: 280px;
    height: 280px;
}

.btn-header:active {
    transform: scale(0.96);
}

.btn-header-login {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-header-login:hover {
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.btn-header-register {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.35);
}

.btn-header-register:hover {
    box-shadow: 0 6px 22px rgba(20, 184, 166, 0.5);
    transform: translateY(-2px);
}

/* 第二行：导航链接 */
.header-row2 {
    width: 100%;
}

.nav-scroll-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* 移动端左右滑动箭头 */
.nav-scroll-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    background: rgba(15, 23, 42, 0.9);
    color: var(--casino-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-scroll-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--casino-gold);
    transform: scale(1.08);
}

.nav-scroll-btn:active {
    transform: scale(0.95);
}

.nav-scroll-btn span {
    display: block;
    margin-top: -1px;
}

/* 导航链接条 */
.site-header .header-nav-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
}

.site-header .header-nav-links::-webkit-scrollbar {
    display: none;
}

.site-header .nav-link-item {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-white);
    text-transform: capitalize;
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
}

.site-header .nav-link-item:hover {
    color: var(--casino-gold);
    background: rgba(16, 185, 129, 0.12);
}

/* ===== 移动端（≤767px） ===== */
@media (max-width: 767px) {
    .site-header {
        padding: 10px 0 0;
    }
    
    .site-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .header-row1 {
        padding-bottom: 10px;
    }
    
    .site-header .logo-link img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .btn-header {
        padding: 16px 28px;
        font-size: 16px;
        min-height: 52px;
    }
    
    .header-buttons {
        gap: 12px;
    }
    
    /* 移动端显示左右箭头 */
    .nav-scroll-btn {
        display: flex;
    }
    
    .site-header .header-nav-links {
        padding: 6px 4px;
        margin: 0 4px;
    }
    
    .site-header .nav-link-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .site-header .logo-link img {
        max-width: 100px;
        max-height: 44px;
    }
    
    .btn-header {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 52px;
    }
}

/* ===== PC 端（≥768px） ===== */
@media (min-width: 768px) {
    .site-header {
        padding: 14px 0 0;
    }
    
    .header-row1 {
        padding-bottom: 14px;
    }
    
    .site-header .logo-link img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .btn-header {
        padding: 12px 24px;
        font-size: 15px;
        min-height: 46px;
    }
    
    .header-buttons {
        gap: 12px;
    }
    
    /* PC 端隐藏左右箭头，导航条居中 */
    .nav-scroll-btn {
        display: none;
    }
    
    .site-header .header-row2 .nav-scroll-wrap {
        justify-content: center;
    }
    
    .site-header .header-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        overflow-y: visible;
    }
    
    .site-header .nav-link-item {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ===== Section样式 ===== */
section {
    padding: 2rem 0;
    position: relative;
}

section h2 {
    text-align: center;
    padding: 1rem 0;
}

/* Section移动端调整 */
@media (max-width: 767px) {
    section {
        padding: 1.5rem 0;
    }
    
    section h1 {
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    section img {
        margin-top: 1rem;
        width: 100%;
        height: auto;
    }
    
    section .col-lg-6 {
        margin-bottom: 1.5rem;
    }
    
    section .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Acessos Section移动端 */
@media (max-width: 767px) {
    section .d-flex.justify-content-center {
        flex-direction: column;
        text-align: center;
    }
    
    section .d-flex.justify-content-center .ms-3 {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
    }
    
    section .d-flex.justify-content-center .btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* ===== Footer样式 - 翡翠绿点缀 ===== */
footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.35) 50%, 
        transparent 100%);
    opacity: 0.9;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.footer-intro h3 {
    color: var(--casino-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-intro p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 导航样式 - 166bet3 风格 */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(16, 185, 129, 0.12);
    white-space: nowrap;
    flex: 1 1 0%;
    text-align: center;
    min-width: 0;
    background: transparent;
}

.nav-link:last-child {
    border-right: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 185, 129, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--casino-gold);
    transition: width 0.3s ease;
    z-index: 1;
}

.nav-link span,
.nav-link {
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    color: var(--casino-gold);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.footer-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.footer-contact h3 {
    color: var(--casino-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--casino-gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--casino-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--casino-gold-light);
    text-decoration: underline;
}

.google-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.google-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Footer 联系区 v2：其他样式 + 地图自适应 */
.footer-contact-v2 {
    border-top: 1px dashed rgba(148, 163, 184, 0.25);
    padding-top: 2rem;
    margin-top: 2.5rem;
}
.footer-contact-v2 .contact-block {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--casino-gold);
}
.footer-contact-v2 .contact-block-title,
.footer-contact-v2 .map-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}
.footer-contact-v2 .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact-v2 .contact-list-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.25rem 0.75rem;
    align-items: start;
}
.footer-contact-v2 .contact-list-icon {
    grid-row: 1 / -1;
    font-size: 1.25rem;
}
.footer-contact-v2 .contact-list-label {
    font-size: 0.8rem;
    color: var(--casino-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-contact-v2 .contact-list-value {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}
.footer-contact-v2 .contact-list-value a {
    color: var(--casino-gold-light);
    text-decoration: none;
}
.footer-contact-v2 .contact-list-value a:hover {
    text-decoration: underline;
}
.footer-contact-v2 .map-block {
    padding: 0;
}
.footer-contact-v2 .map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.footer-contact-v2 .map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: none;
    display: block;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Footer移动端调整 */
@media (max-width: 767px) {
    footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-intro {
        margin-bottom: 2rem;
    }
    
    .footer-intro h3 {
        font-size: 1.3rem;
    }
    
    .footer-intro p {
        font-size: 0.95rem;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 8px;
        gap: 0;
    }
    
    .nav-link {
        padding: 12px 8px;
        font-size: 13px;
        border-right: 1px solid rgba(16, 185, 129, 0.12);
        border-bottom: 1px solid rgba(16, 185, 129, 0.08);
        flex: 1 1 calc(33.333% - 1px);
        min-width: 0;
        min-height: 44px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .nav-link:nth-child(3n) {
        border-right: none;
    }
    
    .nav-link:nth-child(n+4) {
        border-top: 1px solid rgba(16, 185, 129, 0.08);
    }
    
    .nav-link:last-child {
        border-right: none;
    }
    
    .nav-link::after {
        left: 0;
        transform: none;
        width: 0;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .footer-contact {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-info {
        gap: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
    
    .contact-details strong {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .google-map {
        margin-top: 1rem;
    }
    
    .google-map iframe {
        height: 250px;
    }
    
    .footer-contact-v2 .contact-block { padding: 1.25rem; }
    .footer-contact-v2 .map-wrapper { padding-bottom: 60%; min-height: 220px; }
    .footer-contact-v2 .contact-block-title,
    .footer-contact-v2 .map-block-title { font-size: 1.1rem; }
    
    .footer-copyright {
        padding-top: 1.5rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .nav-link {
        padding: 12px 6px;
        font-size: 12px;
        flex: 1 1 calc(33.333% - 1px);
        min-height: 44px;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-right: 1px solid rgba(16, 185, 129, 0.12);
        border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    }
    
    .nav-link:nth-child(3n) {
        border-right: none;
    }
    
    .nav-link:nth-child(n+4) {
        border-top: 1px solid rgba(16, 185, 129, 0.08);
    }
    
    .nav-link:last-child {
        border-right: none;
    }
}

@media (max-width: 360px) {
    .nav-link {
        padding: 12px 4px;
        font-size: 11px;
        min-height: 44px;
    }
}

/* ===== 链接样式 ===== */
a {
    -webkit-tap-highlight-color: rgba(16, 185, 129, 0.15);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--casino-gold);
}

/* ===== 滚动条样式 ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--casino-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

/* ===== 动画效果 ===== */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
    
    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.7;
        }
    }
    
    .btn {
        animation: pulse 3s ease-in-out infinite;
    }
}

/* ===== 响应式图片 ===== */
@media (max-width: 767px) {
    img {
        border-radius: 8px;
    }
}

/* ===== 额外装饰效果 ===== */
section.bg-primary {
    position: relative;
}

section.bg-primary::after {
    content: '';
    pointer-events: none;
}

/* ===== Games Section - Simple Text Style ===== */
.games-intro {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0 1rem;
}

.games-category {
    color: var(--casino-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.35);
}

.games-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.games-text strong {
    color: var(--casino-gold);
    font-weight: 700;
}

.games-link {
    margin: 1.5rem 0;
    text-align: center;
}

.games-link .text-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: inline-block;
}

/* Mobile Responsive for Games Section */
@media (max-width: 767px) {
    .games-intro {
        font-size: 0.95rem;
        margin: 1.5rem auto;
        padding: 0 0.5rem;
        text-align: left;
    }
    
    .games-category {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .games-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .games-link {
        margin: 1.25rem 0;
        padding: 0 0.5rem;
    }
    
    .games-link .text-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .games-intro {
        font-size: 0.9rem;
    }
    
    .games-category {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .games-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ===== Game Tabs (Slots / Cartas / Pesca / Esportes / Live) ===== */
.game-tabs-section .section-title { margin-bottom: 1.5rem; }
.game-tab-wrap { position: relative; }
.game-tab-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.game-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.game-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: rgba(16, 185, 129, 0.2);
}
.game-tab-btn:hover {
    transform: scale(1.05);
    background: rgba(16, 185, 129, 0.15);
    color: var(--casino-gold);
    border-color: var(--casino-gold);
}
#game-tab-slots:checked ~ .game-tab-buttons label[for="game-tab-slots"],
#game-tab-cartas:checked ~ .game-tab-buttons label[for="game-tab-cartas"],
#game-tab-pesca:checked ~ .game-tab-buttons label[for="game-tab-pesca"],
#game-tab-esportes:checked ~ .game-tab-buttons label[for="game-tab-esportes"],
#game-tab-live:checked ~ .game-tab-buttons label[for="game-tab-live"] {
    background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
    color: #0f172a;
    border-color: var(--casino-gold);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    border-radius: 12px;
}
.game-panel {
    display: none;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border-top: 3px solid var(--casino-gold);
}
#game-tab-slots:checked ~ #panel-slots,
#game-tab-cartas:checked ~ #panel-cartas,
#game-tab-pesca:checked ~ #panel-pesca,
#game-tab-esportes:checked ~ #panel-esportes,
#game-tab-live:checked ~ #panel-live {
    display: block;
}
.game-panel-title {
    color: var(--casino-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.game-panel .games-text { margin-bottom: 1rem; }
.game-panel-btn-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .game-tab-buttons {
        gap: 0.5rem 0.6rem;
        margin-bottom: 1.5rem;
        padding: 0.5rem 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    .game-tab-btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.5rem);
        max-width: 100%;
        min-height: 48px;
        padding: 10px 12px;
        font-size: 0.88rem;
        background: rgba(30, 41, 59, 0.85);
        border: 1px solid rgba(16, 185, 129, 0.25);
    }
    #game-tab-slots:checked ~ .game-tab-buttons label[for="game-tab-slots"],
    #game-tab-cartas:checked ~ .game-tab-buttons label[for="game-tab-cartas"],
    #game-tab-pesca:checked ~ .game-tab-buttons label[for="game-tab-pesca"],
    #game-tab-esportes:checked ~ .game-tab-buttons label[for="game-tab-esportes"],
    #game-tab-live:checked ~ .game-tab-buttons label[for="game-tab-live"] {
        background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
        color: #0f172a;
        border-color: var(--casino-gold);
    }
    .game-panel { padding: 1.25rem; }
}
@media (max-width: 480px) {
    .game-tab-buttons { gap: 0.45rem 0.5rem; padding: 0.4rem 0; }
    .game-tab-btn {
        min-width: calc(50% - 0.4rem);
        min-height: 44px;
        padding: 8px 10px;
        font-size: 0.82rem;
    }
}

/* ===== Content Sections ===== */
.content-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--casino-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

/* ===== Cards Layout ===== */
.cards-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    margin: 0 0 2rem 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.cards-row [class*="col-"] {
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* 布局列宽 */
.cards-2-col .col-12,
.cards-3-col .col-12,
.cards-4-col .col-12,
.cards-6-col .col-12 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .cards-3-col .col-md-4,
    .cards-3-col [class*="col-md-4"],
    .row.cards-row.cards-3-col .col-md-4,
    .row.cards-row.cards-3-col [class*="col-md-4"] {
        flex: 0 0 calc(33.333% - 1.33rem) !important;
        width: calc(33.333% - 1.33rem) !important;
        max-width: calc(33.333% - 1.33rem) !important;
    }
    .cards-4-col .col-md-6,
    .cards-4-col [class*="col-md-6"] {
        flex: 0 0 calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    .cards-6-col .col-md-4,
    .cards-6-col [class*="col-md-4"] {
        flex: 0 0 calc(33.333% - 1.33rem) !important;
        width: calc(33.333% - 1.33rem) !important;
        max-width: calc(33.333% - 1.33rem) !important;
    }
}

@media (min-width: 992px) {
    .cards-2-col .col-lg-6,
    .cards-2-col [class*="col-lg-6"] {
        flex: 0 0 calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    .cards-3-col .col-md-4,
    .cards-3-col [class*="col-md-4"],
    .cards-3-col .col-lg-4,
    .cards-row.cards-3-col .col-md-4,
    .row.cards-row.cards-3-col .col-md-4,
    .row.cards-row.cards-3-col [class*="col-md-4"],
    .row.cards-row.cards-3-col .col-lg-4 {
        flex: 0 0 calc(33.333% - 1.33rem) !important;
        width: calc(33.333% - 1.33rem) !important;
        max-width: calc(33.333% - 1.33rem) !important;
    }
    .cards-4-col .col-lg-3,
    .cards-4-col [class*="col-lg-3"],
    .cards-4-col .col-md-6,
    .cards-row.cards-4-col .col-lg-3 {
        flex: 0 0 calc(25% - 1.5rem) !important;
        width: calc(25% - 1.5rem) !important;
        max-width: calc(25% - 1.5rem) !important;
    }
    .cards-6-col .col-lg-2,
    .cards-6-col [class*="col-lg-2"],
    .cards-6-col .col-md-4,
    .cards-row.cards-6-col .col-lg-2 {
        flex: 0 0 calc(16.666% - 1.66rem) !important;
        width: calc(16.666% - 1.66rem) !important;
        max-width: calc(16.666% - 1.66rem) !important;
    }
}

/* ===== Content Card - 顶部色条 + 玻璃态 + 大圆角（与左右条区分） ===== */
.content-card {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 4px solid var(--casino-gold);
    border-radius: 20px;
    padding: 2rem;
    padding-top: 1.75rem;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--casino-gold) 0%, var(--casino-gold-light) 50%, var(--casino-gold) 100%);
    opacity: 0.9;
}

.content-card:hover {
    border-top-width: 5px;
    border-top-color: var(--casino-gold-light);
    box-shadow: 
        0 14px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.content-card h3 {
    color: var(--casino-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.content-card h4 {
    color: var(--casino-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.content-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* ===== Card Variants ===== */
.card-feature,
.card-step,
.card-bonus,
.card-game,
.card-developer,
.card-type,
.card-stat,
.card-security,
.card-support {
    text-align: center;
}

/* ===== 5–9 新区块：平台 / 支付 / 安全 / 社交证明 / KPI ===== */
.platform-section .platform-details {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}
.platform-section .platform-details summary {
    cursor: pointer;
    color: var(--casino-gold);
    font-weight: 600;
    list-style: none;
}
.platform-section .platform-details summary::-webkit-details-marker { display: none; }
.platform-section .platform-details[open] summary { margin-bottom: 1rem; }
.platform-feature-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-gray);
    line-height: 1.9;
}
.platform-advantages-table { overflow-x: auto; margin-top: 1rem; }
.advantages-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.advantages-table th,
.advantages-table td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-white);
}
.advantages-table th {
    background: rgba(16, 185, 129, 0.15);
    color: var(--casino-gold);
    font-weight: 600;
}
.advantages-table tbody tr:last-child td { border-bottom: none; }
.advantages-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }

.payment-section .payment-card { text-align: left; }
.payment-section .payment-card h3 { margin-top: 0; }

.security-section .license-cta,
.security-section .responsible-gaming {
    text-align: center;
}
.security-section .license-cta .btn { display: inline-block; }

/* ===== Casino News / Info 区块（与 content-card 区分） ===== */
.casino-news-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.25) 100%);
    border-top: 1px dashed rgba(148, 163, 184, 0.2);
    border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
}
.news-section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}
.news-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.news-block,
.info-block,
.learn-more-block {
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    text-align: left;
}
.news-block {
    background: rgba(30, 41, 59, 0.6);
    border-left: 4px solid var(--casino-gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.info-block {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
}
.learn-more-block {
    background: rgba(30, 41, 59, 0.5);
    border: 2px dotted rgba(16, 185, 129, 0.35);
    border-radius: 12px;
}
.news-block-title,
.info-block-title,
.learn-more-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--casino-gold-light);
    margin-bottom: 0.75rem;
}
.news-block-text,
.info-block-text,
.learn-more-text {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}
.btn-outline-news {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 2px solid var(--casino-gold);
    color: var(--casino-gold);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-outline-news:hover {
    background: var(--casino-gold);
    color: var(--casino-black);
}
@media (max-width: 767px) {
    .news-info-blocks { gap: 1.25rem; }
    .news-block, .info-block, .learn-more-block { padding: 1.25rem; }
    .news-section-heading { font-size: 1.5rem; }
}

.testimonial-card {
    text-align: center;
    min-height: 100%;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.testimonial-meta {
    font-size: 0.9rem;
    color: var(--casino-gold);
    margin-bottom: 0;
}

.kpi-card { text-align: center; }
.kpi-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--casino-gold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.kpi-card h3 { margin: 0.5rem 0 1rem; font-size: 1.2rem; }
.kpi-card p { margin-bottom: 0; font-size: 0.95rem; }

.card-icon,
.security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.card-horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    text-align: left;
}

.card-horizontal .card-icon,
.card-horizontal .security-icon,
.card-horizontal .type-icon {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-horizontal .step-number {
    width: 60px;
    height: 60px;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-horizontal .stat-number {
    font-size: 3.5rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-horizontal .card-content {
    flex: 1;
}

.card-horizontal .card-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card-horizontal .card-content p {
    margin-bottom: 0;
}

.type-icon,
.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--casino-gold);
    margin: 1rem 0;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-game:hover .card-image img {
    transform: scale(1.1);
}

/* ===== Redesigned Game Card ===== */
.card-game-redesign {
    padding: 0 !important;
    overflow: hidden;
}

.card-image-full {
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image-full img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.card-game-redesign:hover .card-image-full img {
    transform: scale(1.05);
}

.card-game-info {
    padding: 1.5rem;
}

.card-game-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.game-rtp {
    color: var(--casino-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.game-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 60px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.card-type-wide {
    display: flex;
    align-items: center;
    text-align: left;
}

.card-type-wide .type-icon {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--casino-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.card-developer {
    padding: 1.5rem;
}

/* ===== App Section ===== */
.app-features {
    margin: 2rem 0;
}

.app-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.feature-check {
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== FAQ Section ===== */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(26, 35, 50, 0.9));
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--casino-gold);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    color: var(--casino-gold);
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--casino-gold);
    font-weight: 700;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===== RTP Comparison Table ===== */
.rtp-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.rtp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(26, 35, 50, 0.9));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.rtp-comparison-table thead {
    background: linear-gradient(135deg, #10b981, #059669);
}

.rtp-comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    color: #0a0e17;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rtp-comparison-table tbody tr {
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    transition: background 0.3s ease;
}

.rtp-comparison-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.06);
}

.rtp-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.rtp-comparison-table td {
    padding: 1.25rem 1rem;
    color: var(--text-gray);
    vertical-align: middle;
}

.rtp-comparison-table td strong {
    color: var(--casino-gold);
    font-weight: 700;
}

.rtp-comparison-table .rtp-value {
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 767px) {
    .content-section { padding: 2.5rem 0; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .cards-row { gap: 1.5rem; }
    .content-card { padding: 1.5rem; }
    .content-card h3 { font-size: 1.3rem; }
    .card-icon, .security-icon { font-size: 3rem; }
    .step-number { width: 50px; height: 50px; font-size: 1.5rem; }
    .stat-number { font-size: 2.5rem; }
    .card-type-wide { flex-direction: column; text-align: center; }
    .card-type-wide .type-icon { margin-right: 0; margin-bottom: 1rem; }
    .card-horizontal { flex-direction: column !important; text-align: center; }
    .card-horizontal .card-icon,
    .card-horizontal .security-icon,
    .card-horizontal .type-icon,
    .card-horizontal .step-number,
    .card-horizontal .stat-number { margin-right: 0; margin-bottom: 1rem; }
    .card-horizontal .step-number { margin: 0 auto 1rem; }
    .card-image-full { min-height: 200px; }
    .game-description { min-height: auto; }
    .rtp-comparison-table { font-size: 0.9rem; }
    .rtp-comparison-table th,
    .rtp-comparison-table td { padding: 1rem 0.75rem; }
    .rtp-comparison-table th { font-size: 0.85rem; }
    .app-buttons { justify-content: center; }
    .faq-question h4 { font-size: 1rem; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.5rem; }
    .content-card { padding: 1.25rem; }
    .bonus-amount { font-size: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .kpi-value { font-size: 2rem; }
    .advantages-table th,
    .advantages-table td { padding: 0.5rem 0.4rem; font-size: 0.85rem; }
}

