@charset "UTF-8";

/* ============================================
   博彩网站风格 - Casino Style Design
   ============================================ */

/* ===== 基础样式 ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* 主题色彩 - 巴西风草绿色 + 天空蓝 */
    /* 巴西国旗配色 */
    --br-green: #0BA360;         /* 草绿色 */
    --br-green-dark: #007B3A;
    --br-blue: #0BA3FF;          /* 天空蓝 */
    --br-blue-dark: #005BB5;
    --br-yellow: #FFD400;        /* 巴西黄 */
    --br-yellow-dark: #FFB300;

    /* 兼容原有变量命名，整体换成巴西配色 */
    --casino-gold: var(--br-yellow);
    --casino-gold-dark: var(--br-yellow-dark);
    --casino-gold-light: #FFE766;
    --casino-red: #FF9100;       /* 少量橙色作点缀 */
    --casino-red-dark: #F57C00;
    --casino-black: #02121F;
    --casino-dark: #01213A;      /* 深海军蓝 */
    --casino-dark-blue: #003366;
    --casino-blue: var(--br-blue);
    --casino-green: var(--br-green);
    --casino-purple: #004D40;    /* 深青绿作为辅色 */

    --text-gold: var(--br-yellow);
    --text-white: #FFFFFF;
    /* 正文文字：偏浅白，保证在深蓝/深绿背景上清晰可读 */
    --text-gray: #F5F7FA;

    --primary-color: var(--br-green);
    --secondary-color: var(--br-blue);

    /* RGB 用于 rgba() 透明度（绿色 + 蓝色光晕） */
    --accent-primary-rgb: 11, 163, 96;   /* 草绿 */
    --accent-secondary-rgb: 11, 163, 255;/* 天空蓝 */

    /* 边框/高亮 */
    --border-accent: 0.55;
    --border-accent-strong: 0.7;
}

body {
    background: 
        linear-gradient(135deg, #001428 0%, #003366 30%, #006978 65%, #0BA360 100%);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: '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(circle at 20% 30%, rgba(var(--accent-primary-rgb), 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(var(--accent-secondary-rgb), 0.14) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 70%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.015) 40px,
            rgba(255, 255, 255, 0.015) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.015) 40px,
            rgba(255, 255, 255, 0.015) 41px
        );
    pointer-events: none;
    z-index: 0;
}

/* ===== 容器 ===== */
.picture-fluid-9368 {
    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) {
    .picture-fluid-9368 {
        padding-right: 10px;
        padding-left: 10px;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .picture-fluid-9368 {
        padding-right: 8px;
        padding-left: 8px;
    }
}

@media (min-width: 576px) {
    .picture-fluid-9368 {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .picture-fluid-9368 {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .picture-fluid-9368 {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .picture-fluid-9368 {
        max-width: 1140px;
    }
}

/* ===== 标题样式 ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(var(--accent-primary-rgb), 0.5);
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 {
    font-size: calc(1.75rem + 2vw);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Hero H1 smaller font size */
.breadcrumb-light-6b06 {
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    .breadcrumb-light-6b06 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .breadcrumb-light-6b06 {
        font-size: 1.5rem;
    }
}

/* Hero Description Styles */
.selected-50af {
    margin: 1.5rem 0;
}

.selected-50af p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.selected-50af strong {
    color: var(--casino-gold);
    font-weight: 700;
}

@media (max-width: 767px) {
    .selected-50af 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;
    }
}

/* 标题中的链接样式 */
h1 .inner_c32a,
h2 .inner_c32a,
h3 .inner_c32a {
    text-decoration: none;
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

h1 .inner_c32a:hover,
h2 .inner_c32a:hover,
h3 .inner_c32a:hover {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-red) 50%, var(--casino-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(var(--accent-primary-rgb), 0.5);
    transform: scale(1.05);
    display: inline-block;
}

/* 文本中的链接样式 */
.banner_fast_652b {
    /* 文本链接用天空蓝，避免和按钮/标题的黄绿冲突 */
    color: var(--casino-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}

.banner_fast_652b:hover {
    color: var(--text-white);
    border-bottom: 1px solid var(--casino-blue);
    text-shadow: 0 0 10px rgba(var(--accent-secondary-rgb), 0.5);
}

/* 移动端标题调整 */
@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
}

/* 全站基础文字颜色统一为浅色，保证对比和清晰度 */
body,
p,
span,
li,
dt,
dd,
label,
small {
    color: var(--text-gray);
}

p {
    margin: 0 0 1rem 0;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ===== 图片样式 ===== */
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(var(--accent-primary-rgb), 0.5);
}

.frame-red-d162 {
    max-width: 100%;
    height: auto;
}

/* ===== 按钮样式 ===== */
.accent-f354 {
    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);
}

.accent-f354::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;
}

.accent-f354:hover::before {
    width: 300px;
    height: 300px;
}

.accent-f354:active {
    transform: scale(0.95);
}

/* 主要按钮 - 更亮橙色 */
.dark-9f3f {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    color: var(--casino-black);
    border: 2px solid var(--casino-gold-light);
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.5);
}

.dark-9f3f:hover {
    background: linear-gradient(135deg, var(--casino-gold-light) 0%, var(--casino-gold) 100%);
    box-shadow: 0 6px 28px rgba(var(--accent-primary-rgb), 0.65);
    transform: translateY(-2px);
}

/* 成功按钮 - 更亮橙色 */
.detail-white-2bf3 {
    background: linear-gradient(135deg, var(--casino-green) 0%, var(--casino-gold) 100%);
    color: var(--casino-black);
    border: 2px solid var(--casino-gold-light);
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.45);
}

.detail-white-2bf3:hover {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-green) 100%);
    box-shadow: 0 6px 28px rgba(var(--accent-primary-rgb), 0.65);
    transform: translateY(-2px);
}

.tag_hard_49aa {
    padding: 16px 32px;
    font-size: 18px;
}

/* 移动端按钮调整 */
@media (max-width: 767px) {
    section .accent-f354 {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 5px 0;
    }
    
    .tag_hard_49aa {
        padding: 16px 28px;
        font-size: 18px;
    }
}

/* ===== 布局工具类 ===== */
.list-basic-9202 {
    display: flex !important;
}

.thumbnail_next_c751 {
    justify-content: space-between !important;
}

.iron_57c3 {
    justify-content: center !important;
}

.pro-ef51 {
    align-items: center !important;
}

.texture-cool-409f {
    text-align: center;
}

.stone_0a8b {
    color: var(--text-white) !important;
}

.picture_3206 {
    color: var(--casino-gold) !important;
}

.gallery_d002 {
    text-decoration: none;
}

/* ===== 背景色 ===== */
.module_upper_8294 {
    background: linear-gradient(135deg, var(--casino-dark-blue) 0%, var(--casino-green) 45%, var(--casino-dark) 100%);
    position: relative;
}

.module_upper_8294::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(var(--accent-primary-rgb), 0.05) 10px,
        rgba(var(--accent-primary-rgb), 0.05) 20px
    );
}

/* ===== 间距工具类 ===== */
.input-yellow-9490 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.focus-808a {
    margin-right: 0.5rem !important;
}

.caption_first_b9c6 {
    margin-right: 1rem !important;
}

.blue-cdc9 {
    margin-left: 1rem !important;
}

.grid_1d20 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.sort_db7e {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 767px) {
    .sort_db7e {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ===== 圆角 ===== */
.header_0cb3 {
    border-radius: 8px;
}

.narrow-7122 {
    border-radius: 20px;
}

/* ===== 行和列 ===== */
.down-b48b {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    box-sizing: border-box;
    width: calc(100% + 30px);
}

/* 移动端row调整 */
@media (max-width: 767px) {
    .down-b48b {
        margin-right: -10px;
        margin-left: -10px;
        width: calc(100% + 20px);
    }
}

@media (max-width: 480px) {
    .down-b48b {
        margin-right: -8px;
        margin-left: -8px;
        width: calc(100% + 16px);
    }
}

.down-b48b > * {
    padding-right: 15px;
    padding-left: 15px;
}

.video_hovered_a6a2 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .cool_2995 {
        flex: 0 0 auto;
        width: 50%;
    }
}

/* ===== Header样式 ===== */
/* ===== Header样式 - 重新设计 ===== */
header {
    background: linear-gradient(135deg, rgba(0, 38, 76, 0.96) 0%, rgba(0, 123, 58, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--casino-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header img {
    filter: drop-shadow(0 0 10px rgba(var(--accent-primary-rgb), 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Logo样式 */
.main_stale_6462 {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.main_stale_6462:hover {
    transform: scale(1.05);
}

.main_stale_6462:hover img {
    filter: drop-shadow(0 0 15px rgba(var(--accent-primary-rgb), 0.8));
}

.main_stale_6462 img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Header导航容器 */
.slider-yellow-9f52 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

/* 右侧容器 */
.action_883c {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* 上行 - 汉堡菜单 */
.advanced_1fe4 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}

/* 汉堡菜单按钮 */
.video_83f5 {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    gap: 5px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    flex-shrink: 0;
    align-items: stretch;
    z-index: 1000;
    position: relative;
    touch-action: manipulation;
}

.video_83f5 span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--casino-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    pointer-events: none;
}

.video_83f5:hover span {
    background: var(--casino-gold-light);
}

.video_83f5:active {
    transform: scale(0.95);
}

/* 下行 - 按钮容器 */
.progress_e44e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* 按钮样式 */
.active_b01e {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 44px;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* 导航链接容器 - 默认隐藏 */
.red_8491 {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 15px;
    padding: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-radius: 10px;
    border: 2px solid rgba(var(--accent-primary-rgb), 0.5);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* 移动端菜单展开状态 */
.red_8491.fresh_4c07 {
    display: flex;
}

/* 汉堡菜单激活状态 - 转换为X */
.video_83f5 {
    position: relative;
}

.video_83f5.fn-active-360f span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
    position: relative;
    top: 5px;
}

.video_83f5.fn-active-360f span:nth-child(2) {
    opacity: 0;
}

.video_83f5.fn-active-360f span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
    position: relative;
    bottom: 5px;
}

.red_8491::-webkit-scrollbar {
    display: none;
}

.full-1a21 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(var(--accent-primary-rgb), 0.4);
    white-space: nowrap;
    flex: 1 1 auto;
    text-align: center;
    min-height: 44px;
}

.full-1a21:last-child {
    border-right: none;
}

.full-1a21::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.35) 0%, rgba(var(--accent-secondary-rgb), 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.full-1a21::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--casino-gold), var(--casino-red), var(--casino-gold));
    transition: width 0.3s ease;
    z-index: 1;
}

.full-1a21 {
    position: relative;
    z-index: 1;
}

.full-1a21:hover {
    color: var(--casino-gold);
    transform: translateY(-2px);
}

.full-1a21:hover::before {
    opacity: 1;
}

.full-1a21:hover::after {
    width: 100%;
}

/* ===== 移动端样式（≤767px） ===== */
@media (max-width: 767px) {
    header {
        padding: 10px 0;
    }
    
    header .picture-fluid-9368 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .slider-yellow-9f52 {
        gap: 10px;
        align-items: flex-start;
    }
    
    .main_stale_6462 img {
        width: 100px;
        height: 100px;
    }
    
    .action_883c {
        flex: 1;
        min-width: 0;
    }
    
    .advanced_1fe4 {
        margin-bottom: 6px;
        justify-content: flex-start;
    }
    
    .video_83f5 {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
    
    .video_83f5 span {
        height: 4px;
    }
    
    .red_8491 {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    
    .red_8491.fresh_4c07 {
        display: flex;
    }
    
    .full-1a21 {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.4);
    }
    
    .full-1a21:last-child {
        border-bottom: none;
    }
    
    .progress_e44e {
        gap: 8px;
        justify-content: space-between;
        width: 100%;
    }
    
    .active_b01e {
        padding: 14px 18px;
        font-size: 15px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }
    
    header .picture-fluid-9368 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .slider-yellow-9f52 {
        gap: 8px;
    }
    
    .advanced_1fe4 {
        margin-bottom: 5px;
    }
    
    .video_83f5 {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .video_83f5 span {
        height: 4px;
    }
    
    .progress_e44e {
        gap: 6px;
    }
    
    .active_b01e {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
    }
}

/* ===== PC端样式（≥768px） ===== */
@media (min-width: 768px) {
    .slider-yellow-9f52 {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .action_883c {
        flex-direction: row;
        align-items: center;
        flex: 0 0 auto;
        gap: 10px;
    }
    
    .advanced_1fe4 {
        display: none;
    }
    
    .progress_e44e {
        flex-direction: row;
        gap: 2px;
        width: auto;
        justify-content: flex-end;
        margin: 0;
    }
    
    .video_83f5 {
        display: none;
    }
    
    .red_8491 {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    
    .full-1a21 {
        padding: 14px 20px;
        flex: 0 1 auto;
    }
    
    .active_b01e {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ===== 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 .cool_2995 {
        margin-bottom: 1.5rem;
    }
    
    section .accent-f354 {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Acessos Section移动端 */
@media (max-width: 767px) {
    section .list-basic-9202.iron_57c3 {
        flex-direction: column;
        text-align: center;
    }
    
    section .list-basic-9202.iron_57c3 .blue-cdc9 {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
    }
    
    section .list-basic-9202.iron_57c3 .accent-f354 {
        width: 100%;
        margin: 5px 0;
    }
}

/* ===== Footer样式 - 博彩风格 ===== */
footer {
    background: linear-gradient(135deg, #02121F 0%, #003366 40%, #0BA360 100%);
    border-top: 3px solid var(--casino-gold);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--casino-gold) 25%, 
        var(--casino-red) 50%, 
        var(--casino-gold) 75%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.shadow_7960 {
    position: relative;
    z-index: 1;
}

.list_0561 {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.list_0561 h3 {
    color: var(--casino-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.list_0561 p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* 导航样式 - 导航栏风格 */
.next_636d {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%);
    border-radius: 10px;
    border: 2px solid rgba(var(--accent-primary-rgb), 0.5);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.element_2184 {
    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(var(--accent-primary-rgb), 0.4);
    white-space: nowrap;
    flex: 1 1 0%;
    text-align: center;
    min-width: 0;
    background: transparent;
}

.element_2184:last-child {
    border-right: none;
}

.element_2184::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.35) 0%, rgba(var(--accent-secondary-rgb), 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.element_2184::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--casino-gold), var(--casino-red), var(--casino-gold));
    transition: width 0.3s ease;
    z-index: 1;
}

.element_2184 span,
.element_2184 {
    position: relative;
    z-index: 1;
}

.element_2184:hover {
    color: var(--casino-gold);
    transform: translateY(-2px);
}

.element_2184:hover::before {
    opacity: 1;
}

.element_2184:hover::after {
    width: 100%;
}

.west_cb11 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--accent-primary-rgb), 0.45);
}

.west_cb11 h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.wrapper_pink_cf33 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shadow_d6f6 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon_medium_ff0a {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.image-thick-9916 {
    flex: 1;
}

.image-thick-9916 strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.image-thick-9916 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.image-thick-9916 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.image-thick-9916 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.logo_7d77 {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.logo_7d77 iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.under-4a92 {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--accent-primary-rgb), 0.45);
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Footer移动端调整 */
@media (max-width: 767px) {
    footer {
        padding: 2rem 0 1.5rem;
    }
    
    .list_0561 {
        margin-bottom: 2rem;
    }
    
    .list_0561 h3 {
        font-size: 1.3rem;
    }
    
    .list_0561 p {
        font-size: 0.95rem;
    }
    
    .next_636d {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 8px;
        gap: 0;
    }
    
    .element_2184 {
        padding: 12px 8px;
        font-size: 13px;
        border-right: 1px solid rgba(var(--accent-primary-rgb), 0.4);
        border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.35);
        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;
    }
    
    .element_2184:nth-child(3n) {
        border-right: none;
    }
    
    .element_2184:nth-child(n+4) {
        border-top: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    }
    
    .element_2184:last-child {
        border-right: none;
    }
    
    .element_2184::after {
        left: 0;
        transform: none;
        width: 0;
    }
    
    .element_2184:hover::after {
        width: 100%;
    }
    
    .west_cb11 {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .west_cb11 h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .wrapper_pink_cf33 {
        gap: 1.2rem;
    }
    
    .shadow_d6f6 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .icon_medium_ff0a {
        font-size: 1.3rem;
    }
    
    .image-thick-9916 strong {
        font-size: 0.95rem;
    }
    
    .image-thick-9916 p {
        font-size: 0.9rem;
    }
    
    .logo_7d77 {
        margin-top: 1rem;
    }
    
    .logo_7d77 iframe {
        height: 250px;
    }
    
    .under-4a92 {
        padding-top: 1.5rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .next_636d {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .element_2184 {
        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(var(--accent-primary-rgb), 0.4);
        border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    }
    
    .element_2184:nth-child(3n) {
        border-right: none;
    }
    
    .element_2184:nth-child(n+4) {
        border-top: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    }
    
    .element_2184:last-child {
        border-right: none;
    }
}

@media (max-width: 360px) {
    .element_2184 {
        padding: 12px 4px;
        font-size: 11px;
        min-height: 44px;
    }
}

/* ===== 链接样式 ===== */
a {
    -webkit-tap-highlight-color: rgba(var(--accent-primary-rgb), 0.45);
    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, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--casino-gold-dark) 0%, var(--casino-gold) 100%);
}

/* ===== 动画效果 ===== */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
    
    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.7;
        }
    }
    
    .accent-f354 {
        animation: pulse 3s ease-in-out infinite;
    }
}

/* ===== 响应式图片 ===== */
@media (max-width: 767px) {
    img {
        border-radius: 8px;
    }
}

/* ===== 额外装饰效果 ===== */
section.module_upper_8294 {
    position: relative;
}

section.module_upper_8294::after {
    content: '🎰';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.1;
    pointer-events: none;
}

/* ===== Games Section - Simple Text Style ===== */
.text_b9af {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.disabled-a7e5 {
    color: var(--casino-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(var(--accent-primary-rgb), 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.badge_fixed_9156 {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.badge_fixed_9156 strong {
    color: var(--casino-gold);
    font-weight: 700;
}

.popup-full-9942 {
    margin: 1.5rem 0;
    text-align: center;
}

.popup-full-9942 .banner_fast_652b {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: inline-block;
}

/* Mobile Responsive for Games Section */
@media (max-width: 767px) {
    .text_b9af {
        font-size: 0.95rem;
        margin: 1.5rem auto;
        padding: 0 0.5rem;
        text-align: left;
    }
    
    .disabled-a7e5 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .badge_fixed_9156 {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .popup-full-9942 {
        margin: 1.25rem 0;
        padding: 0 0.5rem;
    }
    
    .popup-full-9942 .banner_fast_652b {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .text_b9af {
        font-size: 0.9rem;
    }
    
    .disabled-a7e5 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .badge_fixed_9156 {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ===== Content Sections ===== */
.title_focused_b01d {
    padding: 4rem 0;
}

.dynamic-bcdd {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--casino-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.slow_2979 {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.paragraph-181d {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border-top: 2px solid rgba(var(--accent-primary-rgb), 0.45);
    border-bottom: 2px solid rgba(var(--accent-primary-rgb), 0.45);
}

/* ===== Cards Layout ===== */
.heading_pink_a0df {
    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;
}

.heading_pink_a0df [class*="col-"] {
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* 布局列宽 */
.widget_static_c1c3 .video_hovered_a6a2,
.row_short_43b7 .video_hovered_a6a2,
.description-basic-bf01 .video_hovered_a6a2,
.logo-55fb .video_hovered_a6a2 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .row_short_43b7 .slider-00f5,
    .row_short_43b7 [class*="col-md-4"],
    .down-b48b.heading_pink_a0df.row_short_43b7 .slider-00f5,
    .down-b48b.heading_pink_a0df.row_short_43b7 [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;
    }
    .description-basic-bf01 .out-d686,
    .description-basic-bf01 [class*="col-md-6"] {
        flex: 0 0 calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    .logo-55fb .slider-00f5,
    .logo-55fb [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) {
    .widget_static_c1c3 .cool_2995,
    .widget_static_c1c3 [class*="col-lg-6"] {
        flex: 0 0 calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    .row_short_43b7 .slider-00f5,
    .row_short_43b7 [class*="col-md-4"],
    .row_short_43b7 .right-4963,
    .heading_pink_a0df.row_short_43b7 .slider-00f5,
    .down-b48b.heading_pink_a0df.row_short_43b7 .slider-00f5,
    .down-b48b.heading_pink_a0df.row_short_43b7 [class*="col-md-4"],
    .down-b48b.heading_pink_a0df.row_short_43b7 .right-4963 {
        flex: 0 0 calc(33.333% - 1.33rem) !important;
        width: calc(33.333% - 1.33rem) !important;
        max-width: calc(33.333% - 1.33rem) !important;
    }
    .description-basic-bf01 .outline_7e43,
    .description-basic-bf01 [class*="col-lg-3"],
    .description-basic-bf01 .out-d686,
    .heading_pink_a0df.description-basic-bf01 .outline_7e43 {
        flex: 0 0 calc(25% - 1.5rem) !important;
        width: calc(25% - 1.5rem) !important;
        max-width: calc(25% - 1.5rem) !important;
    }
    .logo-55fb .hover-thick-7f2c,
    .logo-55fb [class*="col-lg-2"],
    .logo-55fb .slider-00f5,
    .heading_pink_a0df.logo-55fb .hover-thick-7f2c {
        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 ===== */
.module-5623 {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
    border: 2px solid rgba(var(--accent-primary-rgb), 0.45);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.module-5623:hover {
    transform: translateY(-5px);
    border-color: var(--casino-gold);
    box-shadow: 0 8px 25px rgba(var(--accent-primary-rgb), 0.5);
}

.module-5623 h3 {
    color: var(--casino-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.module-5623 h4 {
    color: var(--casino-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.module-5623 p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ===== Card Variants ===== */
.hard_f146,
.fluid-e78a,
.text_upper_7841,
.tooltip-right-1a99,
.right-c077,
.fast-d8a5,
.texture_basic_e776,
.paragraph-0d6a,
.west-2509,
.table_glass_daca {
    text-align: center;
}

.progress_c8dd,
.short_0db8,
.menu-outer-1027 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.item-cf73 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    text-align: left;
}

.item-cf73 .progress_c8dd,
.item-cf73 .short_0db8,
.item-cf73 .menu-outer-1027,
.item-cf73 .paragraph_prev_cff4 {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.item-cf73 .media-3327 {
    width: 60px;
    height: 60px;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.item-cf73 .modal-9a5e {
    font-size: 3.5rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.item-cf73 .element_1f8f {
    flex: 1;
}

.item-cf73 .element_1f8f h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.item-cf73 .element_1f8f p {
    margin-bottom: 0;
}

.overlay-1376 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    text-align: left;
}

.overlay-1376 .menu-outer-1027 {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.overlay-1376 .new-9e24 {
    flex: 1;
}

.overlay-1376 .new-9e24 h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.overlay-1376 .new-9e24 p {
    margin-bottom: 0;
}

.paragraph_prev_cff4,
.north-d2e4 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.media-3327 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--casino-black);
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.4);
}

.main_short_2cbd {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--casino-red), var(--casino-red-dark));
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(var(--accent-secondary-rgb), 0.5);
}

.over_5342 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--casino-gold);
    margin: 1rem 0;
}

.complex_0126 {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.complex_0126 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tooltip-right-1a99:hover .complex_0126 img {
    transform: scale(1.1);
}

/* ===== Redesigned Game Card ===== */
.tall_d9ab {
    padding: 0 !important;
    overflow: hidden;
}

.nav_left_e677 {
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

.nav_left_e677 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.tall_d9ab:hover .nav_left_e677 img {
    transform: scale(1.05);
}

.frame_hard_9e1c {
    padding: 1.5rem;
}

.frame_hard_9e1c h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.surface-d2b3 {
    color: var(--casino-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-0392 {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 60px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.over-8ec9 {
    width: 100%;
    text-align: center;
}

.button-over-ff53 {
    display: flex;
    align-items: center;
    text-align: left;
}

.button-over-ff53 .paragraph_prev_cff4 {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.modal-9a5e {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--casino-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.right-c077 {
    padding: 1.5rem;
}

/* ===== App Section ===== */
.module_63ce {
    margin: 2rem 0;
}

.main-34e5 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.image_up_83ee {
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.orange_4d90 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== FAQ Section ===== */
.blue-3964 {
    margin-top: 2rem;
}

.media-505b {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
    border: 2px solid rgba(var(--accent-primary-rgb), 0.45);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.media-505b:hover {
    border-color: var(--casino-gold);
}

.easy_a347 {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.easy_a347 h4 {
    color: var(--casino-gold);
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
}

.main_aa5b {
    font-size: 2rem;
    color: var(--casino-gold);
    font-weight: 700;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.media-505b.fn-active-360f .main_aa5b {
    transform: rotate(45deg);
}

.shadow_f853 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.media-505b.fn-active-360f .shadow_f853 {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.shadow_f853 p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ===== RTP Comparison Table ===== */
.outline-8569 {
    overflow-x: auto;
    margin-top: 2rem;
}

.description-5e15 {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.description-5e15 thead {
    background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
}

.description-5e15 th {
    padding: 1.5rem 1rem;
    text-align: left;
    color: var(--casino-black);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-5e15 tbody tr {
    border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    transition: background 0.3s ease;
}

.description-5e15 tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

.description-5e15 tbody tr:last-child {
    border-bottom: none;
}

.description-5e15 td {
    padding: 1.25rem 1rem;
    color: var(--text-gray);
    vertical-align: middle;
}

.description-5e15 td strong {
    color: var(--casino-gold);
    font-weight: 700;
}

.description-5e15 .widget_8a0e {
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 767px) {
    .title_focused_b01d { padding: 2.5rem 0; }
    .dynamic-bcdd { font-size: 1.8rem; }
    .slow_2979 { font-size: 1rem; margin-bottom: 2rem; }
    .heading_pink_a0df { gap: 1.5rem; }
    .module-5623 { padding: 1.5rem; }
    .module-5623 h3 { font-size: 1.3rem; }
    .progress_c8dd, .short_0db8, .menu-outer-1027 { font-size: 3rem; }
    .media-3327 { width: 50px; height: 50px; font-size: 1.5rem; }
    .modal-9a5e { font-size: 2.5rem; }
    .button-over-ff53 { flex-direction: column; text-align: center; }
    .button-over-ff53 .paragraph_prev_cff4 { margin-right: 0; margin-bottom: 1rem; }
    .item-cf73 { flex-direction: column !important; text-align: center; }
    .item-cf73 .progress_c8dd,
    .item-cf73 .short_0db8,
    .item-cf73 .menu-outer-1027,
    .item-cf73 .paragraph_prev_cff4,
    .item-cf73 .media-3327,
    .item-cf73 .modal-9a5e { margin-right: 0; margin-bottom: 1rem; }
    .item-cf73 .media-3327 { margin: 0 auto 1rem; }
    .overlay-1376 { flex-direction: column !important; text-align: center; }
    .overlay-1376 .menu-outer-1027 { margin-right: 0; margin-bottom: 1rem; }
    .nav_left_e677 { min-height: 200px; }
    .footer-0392 { min-height: auto; }
    .description-5e15 { font-size: 0.9rem; }
    .description-5e15 th,
    .description-5e15 td { padding: 1rem 0.75rem; }
    .description-5e15 th { font-size: 0.85rem; }
    .orange_4d90 { justify-content: center; }
    .easy_a347 h4 { font-size: 1rem; }
}

@media (max-width: 480px) {
    .dynamic-bcdd { font-size: 1.5rem; }
    .module-5623 { padding: 1.25rem; }
    .over_5342 { font-size: 1.5rem; }
    .modal-9a5e { font-size: 2rem; }
}

/* css-noise: da5d */
.ghost-box-j6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
