@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;
}

/* ===== 容器 ===== */
.paragraph-8549 {
    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) {
    .paragraph-8549 {
        padding-right: 10px;
        padding-left: 10px;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .paragraph-8549 {
        padding-right: 8px;
        padding-left: 8px;
    }
}

@media (min-width: 576px) {
    .paragraph-8549 {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .paragraph-8549 {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .paragraph-8549 {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .paragraph-8549 {
        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 */
.secondary-under-c158 {
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    .secondary-under-c158 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .secondary-under-c158 {
        font-size: 1.5rem;
    }
}

/* Hero Description Styles */
.footer_f0d4 {
    margin: 1.5rem 0;
}

.footer_f0d4 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);
}

.footer_f0d4 strong {
    color: var(--casino-gold);
    font-weight: 700;
}

@media (max-width: 767px) {
    .footer_f0d4 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 .button_6b32,
h2 .button_6b32,
h3 .button_6b32 {
    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 .button_6b32:hover,
h2 .button_6b32:hover,
h3 .button_6b32: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;
}

/* 文本中的链接样式 */
.outline-last-b64f {
    /* 文本链接用天空蓝，避免和按钮/标题的黄绿冲突 */
    color: var(--casino-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}

.outline-last-b64f: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);
}

.west_b3b8 {
    max-width: 100%;
    height: auto;
}

/* ===== 按钮样式 ===== */
.pattern_d638 {
    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);
}

.pattern_d638::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;
}

.pattern_d638:hover::before {
    width: 300px;
    height: 300px;
}

.pattern_d638:active {
    transform: scale(0.95);
}

/* 主要按钮 - 更亮橙色 */
.hover_hot_9b6b {
    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);
}

.hover_hot_9b6b: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);
}

/* 成功按钮 - 更亮橙色 */
.component-b7ab {
    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);
}

.component-b7ab: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);
}

.static_75bb {
    padding: 16px 32px;
    font-size: 18px;
}

/* 移动端按钮调整 */
@media (max-width: 767px) {
    section .pattern_d638 {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 5px 0;
    }
    
    .static_75bb {
        padding: 16px 28px;
        font-size: 18px;
    }
}

/* ===== 布局工具类 ===== */
.outline_4e62 {
    display: flex !important;
}

.hard_ee1c {
    justify-content: space-between !important;
}

.backdrop_upper_356f {
    justify-content: center !important;
}

.stale-21c0 {
    align-items: center !important;
}

.feature_simple_2770 {
    text-align: center;
}

.backdrop-full-96e5 {
    color: var(--text-white) !important;
}

.narrow_9a3e {
    color: var(--casino-gold) !important;
}

.yellow-1f9e {
    text-decoration: none;
}

/* ===== 背景色 ===== */
.text-mini-f733 {
    background: linear-gradient(135deg, var(--casino-dark-blue) 0%, var(--casino-green) 45%, var(--casino-dark) 100%);
    position: relative;
}

.text-mini-f733::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
    );
}

/* ===== 间距工具类 ===== */
.black_709a {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.down-0a70 {
    margin-right: 0.5rem !important;
}

.prev-2104 {
    margin-right: 1rem !important;
}

.footer-16fe {
    margin-left: 1rem !important;
}

.gallery-ce9a {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.modal_bronze_7b35 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 767px) {
    .modal_bronze_7b35 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ===== 圆角 ===== */
.secondary-79ad {
    border-radius: 8px;
}

.detail-7d82 {
    border-radius: 20px;
}

/* ===== 行和列 ===== */
.warm_788e {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    box-sizing: border-box;
    width: calc(100% + 30px);
}

/* 移动端row调整 */
@media (max-width: 767px) {
    .warm_788e {
        margin-right: -10px;
        margin-left: -10px;
        width: calc(100% + 20px);
    }
}

@media (max-width: 480px) {
    .warm_788e {
        margin-right: -8px;
        margin-left: -8px;
        width: calc(100% + 16px);
    }
}

.warm_788e > * {
    padding-right: 15px;
    padding-left: 15px;
}

.shade_white_a374 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .bright-b3cf {
        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样式 */
.short-536c {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.short-536c:hover {
    transform: scale(1.05);
}

.short-536c:hover img {
    filter: drop-shadow(0 0 15px rgba(var(--accent-primary-rgb), 0.8));
}

.short-536c img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Header导航容器 */
.input-1136 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

/* 右侧容器 */
.under_5a42 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* 上行 - 汉堡菜单 */
.accent-hot-3e95 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}

/* 汉堡菜单按钮 */
.label_wide_1b3d {
    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;
}

.label_wide_1b3d 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;
}

.label_wide_1b3d:hover span {
    background: var(--casino-gold-light);
}

.label_wide_1b3d:active {
    transform: scale(0.95);
}

/* 下行 - 按钮容器 */
.overlay-plasma-019e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* 按钮样式 */
.picture_30ad {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 44px;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* 导航链接容器 - 默认隐藏 */
.picture-bdf3 {
    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);
}

/* 移动端菜单展开状态 */
.picture-bdf3.old-f6f3 {
    display: flex;
}

/* 汉堡菜单激活状态 - 转换为X */
.label_wide_1b3d {
    position: relative;
}

.label_wide_1b3d.fn-active-723d span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
    position: relative;
    top: 5px;
}

.label_wide_1b3d.fn-active-723d span:nth-child(2) {
    opacity: 0;
}

.label_wide_1b3d.fn-active-723d span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
    position: relative;
    bottom: 5px;
}

.picture-bdf3::-webkit-scrollbar {
    display: none;
}

.column-7e6c {
    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;
}

.column-7e6c:last-child {
    border-right: none;
}

.column-7e6c::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;
}

.column-7e6c::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;
}

.column-7e6c {
    position: relative;
    z-index: 1;
}

.column-7e6c:hover {
    color: var(--casino-gold);
    transform: translateY(-2px);
}

.column-7e6c:hover::before {
    opacity: 1;
}

.column-7e6c:hover::after {
    width: 100%;
}

/* ===== 移动端样式（≤767px） ===== */
@media (max-width: 767px) {
    header {
        padding: 10px 0;
    }
    
    header .paragraph-8549 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .input-1136 {
        gap: 10px;
        align-items: flex-start;
    }
    
    .short-536c img {
        width: 100px;
        height: 100px;
    }
    
    .under_5a42 {
        flex: 1;
        min-width: 0;
    }
    
    .accent-hot-3e95 {
        margin-bottom: 6px;
        justify-content: flex-start;
    }
    
    .label_wide_1b3d {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
    
    .label_wide_1b3d span {
        height: 4px;
    }
    
    .picture-bdf3 {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    
    .picture-bdf3.old-f6f3 {
        display: flex;
    }
    
    .column-7e6c {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.4);
    }
    
    .column-7e6c:last-child {
        border-bottom: none;
    }
    
    .overlay-plasma-019e {
        gap: 8px;
        justify-content: space-between;
        width: 100%;
    }
    
    .picture_30ad {
        padding: 14px 18px;
        font-size: 15px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }
    
    header .paragraph-8549 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .input-1136 {
        gap: 8px;
    }
    
    .accent-hot-3e95 {
        margin-bottom: 5px;
    }
    
    .label_wide_1b3d {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .label_wide_1b3d span {
        height: 4px;
    }
    
    .overlay-plasma-019e {
        gap: 6px;
    }
    
    .picture_30ad {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
    }
}

/* ===== PC端样式（≥768px） ===== */
@media (min-width: 768px) {
    .input-1136 {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .under_5a42 {
        flex-direction: row;
        align-items: center;
        flex: 0 0 auto;
        gap: 10px;
    }
    
    .accent-hot-3e95 {
        display: none;
    }
    
    .overlay-plasma-019e {
        flex-direction: row;
        gap: 2px;
        width: auto;
        justify-content: flex-end;
        margin: 0;
    }
    
    .label_wide_1b3d {
        display: none;
    }
    
    .picture-bdf3 {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    
    .column-7e6c {
        padding: 14px 20px;
        flex: 0 1 auto;
    }
    
    .picture_30ad {
        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 .bright-b3cf {
        margin-bottom: 1.5rem;
    }
    
    section .pattern_d638 {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Acessos Section移动端 */
@media (max-width: 767px) {
    section .outline_4e62.backdrop_upper_356f {
        flex-direction: column;
        text-align: center;
    }
    
    section .outline_4e62.backdrop_upper_356f .footer-16fe {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
    }
    
    section .outline_4e62.backdrop_upper_356f .pattern_d638 {
        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;
    }
}

.notice_smooth_9e18 {
    position: relative;
    z-index: 1;
}

.fast-1e89 {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.fast-1e89 h3 {
    color: var(--casino-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fast-1e89 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);
}

/* 导航样式 - 导航栏风格 */
.status_7a0a {
    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);
}

.smooth_3250 {
    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;
}

.smooth_3250:last-child {
    border-right: none;
}

.smooth_3250::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;
}

.smooth_3250::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;
}

.smooth_3250 span,
.smooth_3250 {
    position: relative;
    z-index: 1;
}

.smooth_3250:hover {
    color: var(--casino-gold);
    transform: translateY(-2px);
}

.smooth_3250:hover::before {
    opacity: 1;
}

.smooth_3250:hover::after {
    width: 100%;
}

.main_6120 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--accent-primary-rgb), 0.45);
}

.main_6120 h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.old_738c {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.element-huge-00f7 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.light_dd72 {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.texture_in_0c67 {
    flex: 1;
}

.texture_in_0c67 strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.texture_in_0c67 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.texture_in_0c67 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.texture_in_0c67 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.progress_first_b4eb {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.progress_first_b4eb iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.green-331c {
    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;
    }
    
    .fast-1e89 {
        margin-bottom: 2rem;
    }
    
    .fast-1e89 h3 {
        font-size: 1.3rem;
    }
    
    .fast-1e89 p {
        font-size: 0.95rem;
    }
    
    .status_7a0a {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 8px;
        gap: 0;
    }
    
    .smooth_3250 {
        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;
    }
    
    .smooth_3250:nth-child(3n) {
        border-right: none;
    }
    
    .smooth_3250:nth-child(n+4) {
        border-top: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    }
    
    .smooth_3250:last-child {
        border-right: none;
    }
    
    .smooth_3250::after {
        left: 0;
        transform: none;
        width: 0;
    }
    
    .smooth_3250:hover::after {
        width: 100%;
    }
    
    .main_6120 {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .main_6120 h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .old_738c {
        gap: 1.2rem;
    }
    
    .element-huge-00f7 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .light_dd72 {
        font-size: 1.3rem;
    }
    
    .texture_in_0c67 strong {
        font-size: 0.95rem;
    }
    
    .texture_in_0c67 p {
        font-size: 0.9rem;
    }
    
    .progress_first_b4eb {
        margin-top: 1rem;
    }
    
    .progress_first_b4eb iframe {
        height: 250px;
    }
    
    .green-331c {
        padding-top: 1.5rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .status_7a0a {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .smooth_3250 {
        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);
    }
    
    .smooth_3250:nth-child(3n) {
        border-right: none;
    }
    
    .smooth_3250:nth-child(n+4) {
        border-top: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    }
    
    .smooth_3250:last-child {
        border-right: none;
    }
}

@media (max-width: 360px) {
    .smooth_3250 {
        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;
        }
    }
    
    .pattern_d638 {
        animation: pulse 3s ease-in-out infinite;
    }
}

/* ===== 响应式图片 ===== */
@media (max-width: 767px) {
    img {
        border-radius: 8px;
    }
}

/* ===== 额外装饰效果 ===== */
section.text-mini-f733 {
    position: relative;
}

section.text-mini-f733::after {
    content: '🎰';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.1;
    pointer-events: none;
}

/* ===== Games Section - Simple Text Style ===== */
.hover_clean_f41f {
    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);
}

.hover_53a9 {
    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);
}

.background-south-fb8a {
    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);
}

.background-south-fb8a strong {
    color: var(--casino-gold);
    font-weight: 700;
}

.stone_73d3 {
    margin: 1.5rem 0;
    text-align: center;
}

.stone_73d3 .outline-last-b64f {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: inline-block;
}

/* Mobile Responsive for Games Section */
@media (max-width: 767px) {
    .hover_clean_f41f {
        font-size: 0.95rem;
        margin: 1.5rem auto;
        padding: 0 0.5rem;
        text-align: left;
    }
    
    .hover_53a9 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .background-south-fb8a {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .stone_73d3 {
        margin: 1.25rem 0;
        padding: 0 0.5rem;
    }
    
    .stone_73d3 .outline-last-b64f {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hover_clean_f41f {
        font-size: 0.9rem;
    }
    
    .hover_53a9 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .background-south-fb8a {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ===== Content Sections ===== */
.fresh-1f13 {
    padding: 4rem 0;
}

.pink-d501 {
    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);
}

.filter-0997 {
    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);
}

.main_up_ebf9 {
    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 ===== */
.caption-focused-a507 {
    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;
}

.caption-focused-a507 [class*="col-"] {
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* 布局列宽 */
.top-a6bf .shade_white_a374,
.texture-hard-d921 .shade_white_a374,
.photo_cold_a79c .shade_white_a374,
.red-19a6 .shade_white_a374 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .texture-hard-d921 .dim-0b8c,
    .texture-hard-d921 [class*="col-md-4"],
    .warm_788e.caption-focused-a507.texture-hard-d921 .dim-0b8c,
    .warm_788e.caption-focused-a507.texture-hard-d921 [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;
    }
    .photo_cold_a79c .slider-5876,
    .photo_cold_a79c [class*="col-md-6"] {
        flex: 0 0 calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    .red-19a6 .dim-0b8c,
    .red-19a6 [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) {
    .top-a6bf .bright-b3cf,
    .top-a6bf [class*="col-lg-6"] {
        flex: 0 0 calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    .texture-hard-d921 .dim-0b8c,
    .texture-hard-d921 [class*="col-md-4"],
    .texture-hard-d921 .layout_liquid_2958,
    .caption-focused-a507.texture-hard-d921 .dim-0b8c,
    .warm_788e.caption-focused-a507.texture-hard-d921 .dim-0b8c,
    .warm_788e.caption-focused-a507.texture-hard-d921 [class*="col-md-4"],
    .warm_788e.caption-focused-a507.texture-hard-d921 .layout_liquid_2958 {
        flex: 0 0 calc(33.333% - 1.33rem) !important;
        width: calc(33.333% - 1.33rem) !important;
        max-width: calc(33.333% - 1.33rem) !important;
    }
    .photo_cold_a79c .hidden_east_c9f3,
    .photo_cold_a79c [class*="col-lg-3"],
    .photo_cold_a79c .slider-5876,
    .caption-focused-a507.photo_cold_a79c .hidden_east_c9f3 {
        flex: 0 0 calc(25% - 1.5rem) !important;
        width: calc(25% - 1.5rem) !important;
        max-width: calc(25% - 1.5rem) !important;
    }
    .red-19a6 .right_92b2,
    .red-19a6 [class*="col-lg-2"],
    .red-19a6 .dim-0b8c,
    .caption-focused-a507.red-19a6 .right_92b2 {
        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 ===== */
.box-1785 {
    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);
}

.box-1785:hover {
    transform: translateY(-5px);
    border-color: var(--casino-gold);
    box-shadow: 0 8px 25px rgba(var(--accent-primary-rgb), 0.5);
}

.box-1785 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);
}

.box-1785 h4 {
    color: var(--casino-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.box-1785 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 ===== */
.paragraph_upper_0b2c,
.hero_bronze_248d,
.list-brown-08ff,
.preview_complex_a3b6,
.south_632e,
.advanced_dc3f,
.message-middle-8921,
.outline-2442,
.picture_ced3,
.dim-0b5b {
    text-align: center;
}

.medium_6ae8,
.column-7f9c,
.preview-016e {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.avatar-solid-f19f {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    text-align: left;
}

.avatar-solid-f19f .medium_6ae8,
.avatar-solid-f19f .column-7f9c,
.avatar-solid-f19f .preview-016e,
.avatar-solid-f19f .panel-right-d8eb {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.avatar-solid-f19f .photo-warm-970e {
    width: 60px;
    height: 60px;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.avatar-solid-f19f .full-37cf {
    font-size: 3.5rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.avatar-solid-f19f .background_f6f6 {
    flex: 1;
}

.avatar-solid-f19f .background_f6f6 h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.avatar-solid-f19f .background_f6f6 p {
    margin-bottom: 0;
}

.nav-14a7 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    text-align: left;
}

.nav-14a7 .preview-016e {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.nav-14a7 .list-brown-9e81 {
    flex: 1;
}

.nav-14a7 .list-brown-9e81 h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.nav-14a7 .list-brown-9e81 p {
    margin-bottom: 0;
}

.panel-right-d8eb,
.active-7ae3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.photo-warm-970e {
    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);
}

.paper-7131 {
    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);
}

.hidden_brown_8e0f {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--casino-gold);
    margin: 1rem 0;
}

.heading_a1be {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.heading_a1be img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview_complex_a3b6:hover .heading_a1be img {
    transform: scale(1.1);
}

/* ===== Redesigned Game Card ===== */
.grid-58b7 {
    padding: 0 !important;
    overflow: hidden;
}

.layout_309c {
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

.layout_309c img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.grid-58b7:hover .layout_309c img {
    transform: scale(1.05);
}

.bronze-8155 {
    padding: 1.5rem;
}

.bronze-8155 h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.over-6393 {
    color: var(--casino-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.copper_ff43 {
    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);
}

.info-4f82 {
    width: 100%;
    text-align: center;
}

.column_hard_fc6e {
    display: flex;
    align-items: center;
    text-align: left;
}

.column_hard_fc6e .panel-right-d8eb {
    font-size: 4rem;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.full-37cf {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--casino-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.south_632e {
    padding: 1.5rem;
}

/* ===== App Section ===== */
.accordion_3aba {
    margin: 2rem 0;
}

.avatar_clean_0f71 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.plasma_1cd4 {
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.surface_f1a3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== FAQ Section ===== */
.label_green_b7d1 {
    margin-top: 2rem;
}

.left-1796 {
    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;
}

.left-1796:hover {
    border-color: var(--casino-gold);
}

.liquid_20c7 {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.liquid_20c7 h4 {
    color: var(--casino-gold);
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
}

.in_9f93 {
    font-size: 2rem;
    color: var(--casino-gold);
    font-weight: 700;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.left-1796.fn-active-723d .in_9f93 {
    transform: rotate(45deg);
}

.small_93de {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.left-1796.fn-active-723d .small_93de {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.small_93de 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 ===== */
.row-c896 {
    overflow-x: auto;
    margin-top: 2rem;
}

.box_thick_a24e {
    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);
}

.box_thick_a24e thead {
    background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
}

.box_thick_a24e 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;
}

.box_thick_a24e tbody tr {
    border-bottom: 1px solid rgba(var(--accent-primary-rgb), 0.35);
    transition: background 0.3s ease;
}

.box_thick_a24e tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

.box_thick_a24e tbody tr:last-child {
    border-bottom: none;
}

.box_thick_a24e td {
    padding: 1.25rem 1rem;
    color: var(--text-gray);
    vertical-align: middle;
}

.box_thick_a24e td strong {
    color: var(--casino-gold);
    font-weight: 700;
}

.box_thick_a24e .carousel_stone_4707 {
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 767px) {
    .fresh-1f13 { padding: 2.5rem 0; }
    .pink-d501 { font-size: 1.8rem; }
    .filter-0997 { font-size: 1rem; margin-bottom: 2rem; }
    .caption-focused-a507 { gap: 1.5rem; }
    .box-1785 { padding: 1.5rem; }
    .box-1785 h3 { font-size: 1.3rem; }
    .medium_6ae8, .column-7f9c, .preview-016e { font-size: 3rem; }
    .photo-warm-970e { width: 50px; height: 50px; font-size: 1.5rem; }
    .full-37cf { font-size: 2.5rem; }
    .column_hard_fc6e { flex-direction: column; text-align: center; }
    .column_hard_fc6e .panel-right-d8eb { margin-right: 0; margin-bottom: 1rem; }
    .avatar-solid-f19f { flex-direction: column !important; text-align: center; }
    .avatar-solid-f19f .medium_6ae8,
    .avatar-solid-f19f .column-7f9c,
    .avatar-solid-f19f .preview-016e,
    .avatar-solid-f19f .panel-right-d8eb,
    .avatar-solid-f19f .photo-warm-970e,
    .avatar-solid-f19f .full-37cf { margin-right: 0; margin-bottom: 1rem; }
    .avatar-solid-f19f .photo-warm-970e { margin: 0 auto 1rem; }
    .nav-14a7 { flex-direction: column !important; text-align: center; }
    .nav-14a7 .preview-016e { margin-right: 0; margin-bottom: 1rem; }
    .layout_309c { min-height: 200px; }
    .copper_ff43 { min-height: auto; }
    .box_thick_a24e { font-size: 0.9rem; }
    .box_thick_a24e th,
    .box_thick_a24e td { padding: 1rem 0.75rem; }
    .box_thick_a24e th { font-size: 0.85rem; }
    .surface_f1a3 { justify-content: center; }
    .liquid_20c7 h4 { font-size: 1rem; }
}

@media (max-width: 480px) {
    .pink-d501 { font-size: 1.5rem; }
    .box-1785 { padding: 1.25rem; }
    .hidden_brown_8e0f { font-size: 1.5rem; }
    .full-37cf { font-size: 2rem; }
}

/* css-noise: a28c */
.phantom-card-f4 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
