﻿/* ================================
   每个页面独特布局系统
   21种不同的内容组织方式
   ================================ */

/* 🎰 SLOT页面 - 卡片网格 + 横向滚动画廊布局 */
.slot-page .horizontal-scroll-section {
    overflow-x: auto;
    white-space: nowrap;
    padding: 30px 10px;
    scroll-behavior: smooth;
    margin: 0 -15px;
}

.slot-page .scroll-card {
    display: inline-block;
    width: 320px;
    min-height: 280px;
    margin-right: 25px;
    white-space: normal;
    vertical-align: top;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.25));
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.slot-page .scroll-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.6);
    border-color: #f7931e;
}

/* 🎲 CASSINO页面 - 左右分栏对比布局 (居中加强版) */
.cassino-page .split-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 50px;
    margin: 60px auto;
    max-width: 1100px;
    align-items: stretch;
}

.cassino-page .split-divider {
    background: linear-gradient(to bottom, transparent, #ffd700, #ffd700, transparent);
    position: relative;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cassino-page .split-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    padding: 15px 5px;
    color: #ffd700;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.cassino-page .split-column {
    padding: 25px;
    min-height: 400px;
}

/* 🍀 FORTUNE页面 - 交替Z字形布局 (居中加强版) */
.fortune-page .zigzag-layout {
    margin: 60px auto;
    max-width: 1100px;
}

.fortune-page .zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.fortune-page .zigzag-item:nth-child(even) {
    direction: rtl;
}

.fortune-page .zigzag-item:nth-child(even) > * {
    direction: ltr;
}

.fortune-page .zigzag-content {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25), rgba(255, 99, 71, 0.15));
    border-left: 6px solid #ff0000;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    min-height: 250px;
}

/* 🎫 LOTTERY页面 - 时间轴垂直布局 (加强版) */
.lottery-page .timeline {
    position: relative;
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.lottery-page .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #9b59b6, #e91e63, #9b59b6);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.lottery-page .timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.lottery-page .timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b59b6, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.8), 0 5px 20px rgba(233, 30, 99, 0.5);
    margin: 0 auto;
    z-index: 2;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.lottery-page .timeline-content {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(233, 30, 99, 0.1));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #9b59b6;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.2);
    min-height: 120px;
}

.lottery-page .timeline-item:nth-child(odd) .timeline-content:first-child {
    text-align: right;
}

/* 📱 APP页面 - Tab标签页切换布局 */
.app-page .tab-container {
    margin: 40px 0;
}

.app-page .tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid rgba(102, 126, 234, 0.3);
}

.app-page .tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -3px;
}

.app-page .tab-btn:hover {
    background: rgba(102, 126, 234, 0.1);
}

.app-page .tab-btn.active {
    border-bottom-color: #667eea;
    color: #667eea;
}

.app-page .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.app-page .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 📦 APK页面 - 手风琴可折叠步骤布局 */
.apk-page .expandable-steps {
    margin: 40px 0;
}

.apk-page .step-expandable {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.apk-page .step-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.apk-page .step-header:hover {
    background: rgba(102, 126, 234, 0.2);
}

.apk-page .step-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
}

.apk-page .step-expandable.expanded .step-body {
    max-height: 500px;
    padding: 20px;
}

.apk-page .step-arrow {
    transition: transform 0.3s ease;
}

.apk-page .step-expandable.expanded .step-arrow {
    transform: rotate(180deg);
}

/* 📥 DOWNLOAD页面 - 瀑布流卡片布局 */
.download-page .masonry-grid {
    column-count: 2;
    column-gap: 25px;
    margin: 40px 0;
}

.download-page .masonry-item {
    break-inside: avoid;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
}

.download-page .masonry-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* 🔐 LOGIN页面 - 居中对话框模态布局 */
.login-page .modal-center-layout {
    max-width: 600px;
    margin: 60px auto;
    background: rgba(0, 102, 204, 0.05);
    border: 3px solid #0066cc;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
}

.login-page .form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #00a8cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

/* 📝 CADASTRO页面 - 多步骤注册向导布局 */
.cadastro-page .wizard-container {
    margin: 40px 0;
}

.cadastro-page .wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.cadastro-page .wizard-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #00a8cc);
    z-index: 0;
}

.cadastro-page .wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cadastro-page .wizard-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00a8cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

/* 👑 VIP页面 - 台阶金字塔布局 (居中版本) */
.vip-page .pyramid-layout {
    margin: 60px auto;
    max-width: 1200px;
}

.vip-page .vip-tier {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(255, 215, 0, 0.05));
    border: 3px solid;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s ease;
}

.vip-page .vip-tier:nth-child(1) {
    border-color: #cd7f32;
    width: 100%;
}

.vip-page .vip-tier:nth-child(2) {
    border-color: #c0c0c0;
    width: 90%;
}

.vip-page .vip-tier:nth-child(3) {
    border-color: #ffd700;
    width: 80%;
}

.vip-page .vip-tier:nth-child(4) {
    border-color: #e5e4e2;
    width: 70%;
    box-shadow: 0 5px 25px rgba(229, 228, 226, 0.4);
}

.vip-page .vip-tier:nth-child(5) {
    border-color: #b9f2ff;
    width: 60%;
    box-shadow: 0 0 50px rgba(185, 242, 255, 0.8), 0 10px 40px rgba(185, 242, 255, 0.5);
}

/* 📱 TELEGRAM页面 - 聊天消息流布局 (加强版) */
.telegram-page .chat-flow {
    max-width: 750px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 136, 204, 0.03);
    border-radius: 20px;
}

.telegram-page .message-left {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 172, 237, 0.2));
    border: 2px solid #0088cc;
    border-radius: 20px 20px 20px 5px;
    padding: 18px 25px;
    margin: 20px 0 20px 0;
    max-width: 85%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.telegram-page .message-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 12px 0;
    border-color: transparent #0088cc transparent transparent;
}

.telegram-page .message-right {
    background: linear-gradient(135deg, #0088cc, #00aced);
    border-radius: 20px 20px 5px 20px;
    padding: 18px 25px;
    margin: 20px 0 20px auto;
    max-width: 85%;
    color: #fff;
    text-align: right;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    position: relative;
}

.telegram-page .message-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 8px;
    border-color: transparent transparent #0088cc transparent;
}

/* 📘 FACEBOOK页面 - 动态信息流瀑布布局 (加强版) */
.facebook-page .feed-layout {
    max-width: 850px;
    margin: 50px auto;
}

.facebook-page .post-card {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), rgba(66, 103, 178, 0.05));
    border: 2px solid #1877f2;
    border-radius: 20px;
    margin-bottom: 35px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.facebook-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.35);
}

.facebook-page .post-header {
    padding: 25px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(66, 103, 178, 0.1));
    border-bottom: 2px solid rgba(24, 119, 242, 0.2);
    display: flex;
    align-items: center;
    gap: 18px;
}

.facebook-page .post-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1877f2, #4267B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.facebook-page .post-body {
    padding: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.facebook-page .post-footer {
    padding: 18px 25px;
    background: rgba(24, 119, 242, 0.08);
    border-top: 2px solid rgba(24, 119, 242, 0.15);
    display: flex;
    gap: 25px;
    font-weight: 600;
    color: #1877f2;
}

/* ⚽ BET页面 - 赛事看板仪表盘布局 (居中加强版) */
.bet-page .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px auto;
    max-width: 1000px;
}

.bet-page .stats-widget {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.25));
    border: 3px solid #4caf50;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
}

.bet-page .stats-widget:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5);
}

.bet-page .stats-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
}

.bet-page .stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4caf50;
    text-shadow: 0 0 25px rgba(76, 175, 80, 0.6);
    margin-bottom: 10px;
}

/* 🎁 BONUS页面 - 礼品盒展开式布局 (居中加强版) */
.bonus-page .gift-box-layout {
    margin: 60px auto;
    max-width: 1000px;
}

.bonus-page .gift-tier {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 193, 7, 0.12));
    border: 4px solid #ff9800;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(255, 152, 0, 0.3);
    transition: all 0.4s ease;
}

.bonus-page .gift-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 152, 0, 0.5);
}

.bonus-page .gift-tier::before {
    content: '🎁';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 200px;
    opacity: 0.06;
    transform: rotate(-15deg);
}

.bonus-page .gift-ribbon {
    position: absolute;
    top: 25px;
    right: -45px;
    background: linear-gradient(135deg, #ff9800, #ffd700);
    color: #000;
    padding: 10px 55px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.6);
    letter-spacing: 1px;
}

/* 🏆 WIN页面 - 领奖台排行榜布局 (加高版本) */
.win-page .podium-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    align-items: end;
    margin: 60px auto;
    max-width: 900px;
}

.win-page .podium-place {
    text-align: center;
    position: relative;
}

.win-page .podium-2 { order: 1; }
.win-page .podium-1 { order: 2; }
.win-page .podium-3 { order: 3; }

.win-page .podium-stand {
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border: 3px solid #ffd700;
    border-radius: 15px 15px 0 0;
    padding: 35px 25px;
    position: relative;
}

.win-page .podium-stand::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.5), transparent);
}

.win-page .podium-1 .podium-stand {
    height: 350px;
    border-width: 5px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 10px 40px rgba(255, 193, 7, 0.6);
}

.win-page .podium-2 .podium-stand {
    height: 280px;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.win-page .podium-3 .podium-stand {
    height: 210px;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.win-page .podium-medal {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: medal-spin 3s ease-in-out infinite;
}

@keyframes medal-spin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(360deg); }
}

/* ⚙️ PLATAFORMA页面 - 技术规格表格布局 */
.plataforma-page .spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.plataforma-page .spec-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid #64ffda;
    border-radius: 10px;
    padding: 25px;
    font-family: 'Courier New', monospace;
}

.plataforma-page .spec-label {
    color: #64ffda;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.plataforma-page .spec-value {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

/* 🎮 JOGOS页面 - 分类网格画廊布局 (居中加强版) */
.jogos-page .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 1100px;
}

.jogos-page .category-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(233, 30, 99, 0.08));
    border: 3px solid #e91e63;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    min-height: 320px;
}

.jogos-page .category-header {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    padding: 25px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.jogos-page .category-body {
    padding: 30px 25px;
}

.jogos-page .category-card:hover {
    transform: translateY(-12px) rotate(3deg);
    box-shadow: 0 25px 60px rgba(233, 30, 99, 0.5);
}

@media (max-width: 992px) {
    .jogos-page .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 🗺️ GAME页面 - 树形导航展开布局 (居中加强版) */
.game-page .tree-nav {
    margin: 50px auto;
    max-width: 900px;
}

.game-page .nav-branch {
    margin-bottom: 45px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(40, 167, 69, 0.05));
    border-left: 6px solid #28a745;
    padding: 25px 25px 25px 45px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.15);
    transition: all 0.3s ease;
}

.game-page .nav-branch:hover {
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.25);
}

.game-page .nav-branch h3 {
    margin-bottom: 25px;
    position: relative;
    font-size: 1.4rem;
    color: #28a745;
}

.game-page .nav-branch h3::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 50%;
    width: 25px;
    height: 4px;
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.game-page .nav-leaf {
    padding: 15px 25px;
    margin: 10px 0;
    background: rgba(40, 167, 69, 0.12);
    border-left: 4px solid #28a745;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.game-page .nav-leaf:hover {
    padding-left: 40px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.25), rgba(40, 167, 69, 0.15));
    box-shadow: 8px 8px 20px rgba(40, 167, 69, 0.3);
    color: #28a745;
}

/* 💾 BAIXAR/INSTALAR页面 - 下载按钮英雄布局 */
.baixar-page .download-hero,
.instalar-page .download-hero {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 25px;
    margin: 40px 0;
    border: 3px solid #667eea;
}

.baixar-page .mega-button,
.instalar-page .mega-button {
    display: inline-block;
    padding: 25px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.baixar-page .mega-button:hover,
.instalar-page .mega-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.7);
}

/* ================================
   响应式适配所有独特布局
   ================================ */

/* ================================
   移动端响应式优化 - 所有独特布局
   ================================ */

@media (max-width: 992px) {
    /* Bet仪表盘2列 */
    .bet-page .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Jogos网格2列 */
    .jogos-page .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 横向滚动卡片变窄 */
    .slot-page .scroll-card { 
        width: 280px; 
        min-height: 260px;
        padding: 20px;
    }
    
    /* 分栏变单列 */
    .cassino-page .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cassino-page .split-divider { display: none; }
    .cassino-page .split-column { min-height: auto; }
    
    /* Z字形变单列 */
    .fortune-page .zigzag-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .fortune-page .zigzag-item:nth-child(even) { direction: ltr; }
    .fortune-page .zigzag-content { min-height: auto; }
    
    /* 时间轴变单侧 */
    .lottery-page .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }
    .lottery-page .timeline::before { left: 35px; }
    .lottery-page .timeline-content:first-child { display: none; }
    .lottery-page .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* Tab变堆叠 */
    .app-page .tab-buttons { 
        flex-direction: column; 
        border-bottom: none;
    }
    .app-page .tab-btn {
        border-bottom: 2px solid rgba(102, 126, 234, 0.2);
        margin-bottom: 0;
    }
    
    /* 瀑布流变单列 */
    .download-page .masonry-grid { column-count: 1; }
    
    /* 领奖台变单列（保持高度差异） */
    .win-page .podium-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .win-page .podium-2, .win-page .podium-1, .win-page .podium-3 { 
        order: 0; 
    }
    .win-page .podium-1 .podium-stand { height: 280px; }
    .win-page .podium-2 .podium-stand { height: 220px; }
    .win-page .podium-3 .podium-stand { height: 170px; }
    
    /* VIP台阶变全宽 */
    .vip-page .vip-tier {
        width: 100% !important;
    }
    
    /* 分类网格单列 */
    .jogos-page .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .jogos-page .category-card { min-height: auto; }
    
    /* 技术规格单列 */
    .plataforma-page .spec-grid {
        grid-template-columns: 1fr;
    }
    
    /* 仪表盘单列 */
    .bet-page .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bet-page .stats-widget { min-height: 150px; }
    
    /* 树形导航缩进减少 */
    .game-page .nav-branch {
        padding: 20px 15px 20px 30px;
    }
    .game-page .nav-branch h3::before {
        left: -25px;
        width: 20px;
    }
    
    /* Telegram消息变宽 */
    .telegram-page .message-left,
    .telegram-page .message-right {
        max-width: 95%;
    }
    
    /* Facebook帖子头像变小 */
    .facebook-page .post-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .facebook-page .post-footer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Bonus礼品盒padding减少 */
    .bonus-page .gift-tier {
        padding: 25px;
    }
    .bonus-page .gift-tier::before {
        font-size: 120px;
    }
}

/* ================================
   每个页面独特设计系统
   ================================ */

/* 🎰 SLOT页面 - 霓虹赌场风格 */
.slot-page .content-hero-img {
    border: 3px solid #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.4);
    animation: neon-pulse 2s infinite;
}

@keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 107, 53, 0.6); }
}

.slot-page .table-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}

.slot-page h2 {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* 🎲 CASSINO页面 - 豪华VIP风格 */
.cassino-page .content-hero-img {
    border: 3px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.cassino-page .table-primary {
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #b8860b 100%) !important;
    color: #000 !important;
}

.cassino-page .card {
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

/* 🍀 FORTUNE页面 - 中国风红金配色 */
.fortune-page .content-hero-img {
    border: 3px solid #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6), 0 10px 40px rgba(255, 215, 0, 0.3);
    border-radius: 15px;
}

.fortune-page .table-primary {
    background: linear-gradient(135deg, #dc143c 0%, #ff6347 100%) !important;
}

.fortune-page h2, .fortune-page h3 {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* 🎫 LOTTERY页面 - 彩票球号码风格 */
.lottery-page .content-hero-img {
    border-radius: 50%;
    border: 5px solid #9b59b6;
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.6);
}

.lottery-page .table-primary {
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%) !important;
}

.lottery-page .alert {
    border-left: 5px solid #9b59b6;
    background: linear-gradient(to right, rgba(155, 89, 182, 0.1), transparent);
}

/* 📱 APP/APK/DOWNLOAD页面 - 科技渐变风格 */
.app-page .content-hero-img,
.apk-page .content-hero-img,
.download-page .content-hero-img {
    border: 3px solid #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    border-radius: 30px;
}

.app-page .table-primary,
.apk-page .table-primary,
.download-page .table-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.app-page .card,
.apk-page .card,
.download-page .card {
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.app-page .card:hover,
.apk-page .card:hover,
.download-page .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

/* 💾 BAIXAR/INSTALAR页面 - 下载进度条风格 */
.baixar-page .card-header,
.instalar-page .card-header {
    position: relative;
    overflow: hidden;
}

.baixar-page .card-header::after,
.instalar-page .card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* 🔐 LOGIN/CADASTRO页面 - 安全蓝绿风格 */
.login-page .table-primary,
.cadastro-page .table-primary {
    background: linear-gradient(135deg, #0066cc 0%, #00a8cc 100%) !important;
}

.login-page .content-hero-img,
.cadastro-page .content-hero-img {
    border: 3px solid #0066cc;
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5), 0 10px 40px rgba(0, 168, 204, 0.3);
}

.login-page .alert-success,
.cadastro-page .alert-success {
    border-left: 5px solid #0066cc;
    background: linear-gradient(to right, rgba(0, 102, 204, 0.1), transparent);
}

/* 👑 VIP页面 - 皇冠钻石奢华风格 */
.vip-page .content-hero-img {
    border: 4px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(148, 0, 211, 0.5);
    border-radius: 20px;
}

.vip-page .table-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #ffd700 50%, #8e44ad 100%) !important;
    color: #000 !important;
    font-weight: 700;
}

.vip-page .card {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* 📱 TELEGRAM页面 - Telegram品牌蓝 */
.telegram-page .content-hero-img {
    border: 3px solid #0088cc;
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.5);
    border-radius: 25px;
}

.telegram-page .table-primary {
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%) !important;
}

.telegram-page .btn-success {
    background: linear-gradient(135deg, #0088cc, #00aced);
    border: none;
}

/* 📘 FACEBOOK页面 - Facebook品牌蓝 */
.facebook-page .content-hero-img {
    border: 3px solid #1877f2;
    box-shadow: 0 10px 40px rgba(24, 119, 242, 0.5);
    border-radius: 15px;
}

.facebook-page .table-primary {
    background: linear-gradient(135deg, #1877f2 0%, #4267B2 100%) !important;
}

.facebook-page .alert-info {
    border-left: 5px solid #1877f2;
    background: linear-gradient(to right, rgba(24, 119, 242, 0.1), transparent);
}

/* ⚽ BET页面 - 体育草地风格 */
.bet-page .content-hero-img {
    border: 3px solid #4caf50;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.5), inset 0 0 20px rgba(76, 175, 80, 0.1);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.bet-page .table-primary {
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%) !important;
}

/* 🎁 BONUS页面 - 礼物盒金色闪光 */
.bonus-page .content-hero-img {
    border: 4px solid #ff9800;
    box-shadow: 0 0 40px rgba(255, 152, 0, 0.7);
    animation: gift-glow 3s infinite;
}

@keyframes gift-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 152, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 60px rgba(255, 152, 0, 0.9), 0 0 120px rgba(255, 215, 0, 0.6); }
}

.bonus-page .table-primary {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 50%, #ff9800 100%) !important;
    color: #000 !important;
}

.bonus-page .card {
    border-image: linear-gradient(135deg, #ff9800, #ffd700) 1;
    border-width: 3px;
    border-style: solid;
}

/* 🏆 WIN页面 - 金色奖杯胜利风格 */
.win-page .content-hero-img {
    border: 4px solid #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 10px 40px rgba(255, 193, 7, 0.5);
    border-radius: 50%;
}

.win-page .table-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ffd700 50%, #ffab00 100%) !important;
    color: #000 !important;
}

/* ⚙️ PLATAFORMA页面 - 技术电路板风格 */
.plataforma-page .content-hero-img {
    border: 2px solid #64ffda;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.4);
    border-radius: 10px;
}

.plataforma-page .table-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
}

.plataforma-page code {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* 🎮 JOGOS页面 - 游戏库网格卡片风格 */
.jogos-page .content-hero-img {
    border: 3px solid #e91e63;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.4);
    border-radius: 20px;
}

.jogos-page .table-primary {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 50%, #f06292 100%) !important;
}

.jogos-page ul li {
    position: relative;
    padding-left: 30px;
}

.jogos-page ul li::before {
    content: '🎮';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* 🗺️ GAME页面 - Sitemap导航网格 */
.game-page .content-hero-img {
    border: 3px solid #607d8b;
    box-shadow: 0 10px 30px rgba(96, 125, 139, 0.3);
}

.game-page h3 {
    color: #28a745;
    border-bottom: 3px solid #28a745;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.game-page ul {
    list-style: none;
    padding-left: 0;
}

.game-page ul li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.game-page ul li:hover {
    background: rgba(40, 167, 69, 0.2);
    padding-left: 25px;
}

/* ================================
   页面独特布局组件
   ================================ */

/* SLOT页面 - 游戏卡片横向滚动 */
.slot-page .game-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.slot-page .game-scroll::-webkit-scrollbar {
    height: 10px;
}

.slot-page .game-scroll::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.slot-page .game-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #ff6b35, #f7931e);
    border-radius: 10px;
}

/* CASSINO页面 - 豪华金色分割线 */
.cassino-page .divider-gold {
    height: 3px;
    background: linear-gradient(to right, transparent, #ffd700, transparent);
    margin: 40px 0;
    position: relative;
}

.cassino-page .divider-gold::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    padding: 0 15px;
    color: #ffd700;
    font-size: 20px;
}

/* FORTUNE页面 - 中国风装饰角 */
.fortune-page .chinese-corner {
    position: relative;
    padding: 30px;
    margin: 30px 0;
}

.fortune-page .chinese-corner::before,
.fortune-page .chinese-corner::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #ffd700;
}

.fortune-page .chinese-corner::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.fortune-page .chinese-corner::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* VIP页面 - 等级进度条 */
.vip-page .level-progress {
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.vip-page .level-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #8e44ad, #ffd700, #8e44ad);
    background-size: 200% 100%;
    animation: vip-shine 3s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes vip-shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* APP页面 - 手机mockup展示 */
.app-page .phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.app-page .phone-screen {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

/* TELEGRAM页面 - 消息气泡风格 */
.telegram-page .message-bubble {
    background: #0088cc;
    color: #fff;
    padding: 15px 20px;
    border-radius: 18px 18px 18px 0;
    margin: 10px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 136, 204, 0.3);
}

.telegram-page .message-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #0088cc transparent transparent;
}

/* BET页面 - 赔率实时跳动效果 */
.bet-page .odds-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    border: 2px solid #4caf50;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bet-page .odds-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    animation: odds-pulse 0.5s ease;
}

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

/* BONUS页面 - 进度条rollover */
.bonus-page .rollover-progress {
    height: 25px;
    background: rgba(255, 152, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid #ff9800;
}

.bonus-page .rollover-bar {
    height: 100%;
    background: linear-gradient(to right, #ff9800, #ffd700);
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.bonus-page .rollover-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: rollover-shine 2s infinite;
}

@keyframes rollover-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* PLATAFORMA页面 - 代码终端风格 */
.plataforma-page .tech-box {
    background: #0a192f;
    border: 1px solid #64ffda;
    border-radius: 5px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    color: #64ffda;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.plataforma-page .tech-box::before {
    content: '> ';
    color: #64ffda;
    font-weight: bold;
}

/* WIN页面 - 奖杯发光效果 */
.win-page .trophy-glow {
    text-align: center;
    font-size: 4rem;
    animation: trophy-rotate 10s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

@keyframes trophy-rotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

/* LOTTERY页面 - 彩票球动画 */
.lottery-page .lottery-ball {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b59b6, #e91e63);
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    margin: 5px;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.5);
    animation: ball-bounce 2s ease-in-out infinite;
}

@keyframes ball-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* JOGOS页面 - 游戏标签云 */
.jogos-page .game-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.jogos-page .game-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(233, 30, 99, 0.3));
    border: 2px solid #e91e63;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jogos-page .game-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.5);
}

/* 内页全新设计样式 - 现代化风格 */

/* 英雄区域保持不变 */
.hero-section {
    background: transparent;
    padding: 2.5rem 0;
    margin: 1rem 0;
    border-radius: 20px;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* 全新内容区域设计 */
.content-section {
    background: linear-gradient(135deg, #0d2818 0%, #1e4d2b 50%, #27ae60 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

/* 功能卡片网格 - 一行3个 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* 平板端改为2列 */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 手机端改为1列 */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
}

.feature-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #2ecc71;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Image sizing for feature icons */
.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 480px) {
    .feature-icon img {
        width: 56px;
        height: 56px;
    }
}

.feature-content {
    text-align: center;
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #b8c5d0;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feature-tag {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
    color: #1a1a1a;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    background: #fdd835;
    box-shadow: 0 6px 20px rgba(253, 216, 53, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

.btn-icon {
    font-style: normal;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.feature-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* 步骤流程设计 */
.steps-section {
    background: linear-gradient(135deg, rgba(30, 77, 43, 0.25) 0%, rgba(39, 174, 96, 0.15) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(21, 65, 139, 0.35);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.steps-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(21, 65, 139, 0.35);
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 77, 43, 0.35);
    border-color: rgba(21, 65, 139, 0.35);
}

.step-number {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.35);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: #e9ecef;
    opacity: 0.8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .steps-section {
        padding: 2rem 1rem;
    }
    
    .steps-title {
        font-size: 1.8rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-tags {
        gap: 0.3rem;
    }
    
    .feature-tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .steps-section {
        padding: 1.5rem 1rem;
    }
    
    .steps-title {
        font-size: 1.6rem;
    }
}

.hero-section .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* 内页网格布局 */
.inner-page-grid {
    margin-top: 2rem;
    gap: 1rem;
}

/* PC端横向显示 */
@media (min-width: 992px) {
    .inner-page-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .inner-page-grid .col-12.col-lg-6 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .inner-page-grid .content-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .inner-page-grid {
        gap: 2rem;
    }
    
    .inner-page-grid .col-12.col-lg-6 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .inner-page-grid {
        gap: 2.5rem;
    }
    
    .inner-page-grid .col-12.col-lg-6 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

/* 内页卡片样式 */
.content-card {
    background: #2ecc71;
    border: 2px solid #2ecc71;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #e1bee7;
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
}

.content-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.content-card p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.content-card .btn {
    background-color: #27ae60;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.content-card .btn:hover {
    background-color: #6a3de8;
    transform: scale(1.05);
}

/* 特色内容区域 */
.featured-content {
    background: rgba(74, 20, 140, 0.08);
    border-radius: 18px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid rgba(156, 39, 176, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #27ae60;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.featured-content h2 {
    color: #27ae60;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.featured-content p {
    color: #e9ecef;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* 信息列表样式 */
.info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.info-list li {
    background: rgba(255, 255, 255, 0.05);
    margin: 0.75rem 0;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    color: #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #27ae60;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.info-list li:hover::before {
    transform: scaleY(1);
}

/* 步骤指示器 */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(74, 20, 140, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.step {
    background: #2ecc71;
    border: 2px solid #27ae60;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scale(1);
}

.step:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
    border-color: #e1bee7;
}

/* 导航菜单当前页面高亮 - 已禁用 */
/* .nav-menu a[href*=".html"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
} */

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .content-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .highlight-text {
        font-size: 2rem;
    }
    
    .featured-content {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .featured-content::before {
        border-radius: 17px;
    }
    
    .info-list li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .step {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ============================================
   Statistics Section - 统计数据区块
   ============================================ */
.stats-section {
    background: rgba(46, 204, 113, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.stats-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 204, 113, 0.4);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #b8c5d0;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* ============================================
   Achievements Section - 成就区块
   ============================================ */
.achievements-section {
    background: rgba(39, 174, 96, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.achievements-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 204, 113, 0.4);
    transform: translateY(-3px);
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.achievement-desc,
.achievement-description {
    font-size: 0.85rem;
    color: #b8c5d0;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.achievement-content {
    flex: 1;
}

.achievement-reward {
    display: inline-block;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* ============================================
   Popular Games Section - 热门游戏推荐
   ============================================ */
.popular-games-section {
    background: rgba(30, 77, 43, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(30, 77, 43, 0.2);
}

.popular-games-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.popular-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .popular-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .popular-games-grid {
        grid-template-columns: 1fr;
    }
}

.popular-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.popular-game-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 204, 113, 0.4);
    transform: translateY(-3px);
}

.game-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.game-info {
    flex: 1;
    width: 100%;
}

.game-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.game-description {
    font-size: 0.85rem;
    color: #b8c5d0;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.game-provider {
    font-size: 0.85rem;
    color: #b8c5d0;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.game-stat-item,
.stat {
    color: #2ecc71;
    white-space: nowrap;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.play-btn:hover {
    transform: translateY(-2px);
    background: #fdd835;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

/* ============================================
   新增内容区块样式 (for bet page)
   ============================================ */

/* Content Hero Images */
.content-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.25), 
                0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(46, 204, 113, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    margin: 0 auto 2rem auto;
    display: block;
}

.content-hero-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(46, 204, 113, 0.35), 
                0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(46, 204, 113, 0.5);
}

/* Container and Layout */
.container.py-5 {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 0.75rem;
}

.py-5.bg-light {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 0;
    margin: 2rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.py-5.bg-light .container {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Row and Column Fix */
.container .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.row .col-12,
.row .col-md-6,
.row .col-md-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.col-12.text-center {
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Headings */
.container.py-5 h2,
.py-5 .container h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
}

.container.py-5 h3 {
    color: #2ecc71;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.container.py-5 h4 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Lead Paragraph */
p.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #e9ecef;
    line-height: 1.8;
}

/* Paragraphs */
.container.py-5 p {
    color: #e9ecef;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
}

/* Text Colors */
.text-success { color: #2ecc71 !important; }
.text-danger { color: #e74c3c !important; }
.text-primary { color: #27ae60 !important; }

/* Lists */
.list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-left: 0;
    width: 100%;
}

.list-unstyled li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    color: #e9ecef;
    text-align: left;
}

.list-unstyled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.text-danger + .list-unstyled li::before {
    content: '⚠';
    color: #e74c3c;
}

/* UL Lists */
.container.py-5 ul {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    width: 100%;
}

.container.py-5 ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    text-align: left;
    color: #e9ecef;
}

.container.py-5 ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

/* OL Lists */
.container.py-5 ol {
    counter-reset: item;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    width: 100%;
}

.container.py-5 ol li {
    counter-increment: item;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #e9ecef;
}

.container.py-5 ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

/* Alert Boxes */
.alert {
    position: relative;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.alert-info {
    background: rgba(26, 188, 156, 0.15);
    border-color: rgba(26, 188, 156, 0.3);
    color: #e9ecef;
}

.alert-warning {
    background: rgba(243, 156, 18, 0.15);
    border-color: rgba(243, 156, 18, 0.3);
    color: #e9ecef;
}

.alert-success {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
    color: #e9ecef;
}

.alert h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.alert p:last-child {
    margin-bottom: 0;
}

.alert strong {
    color: #fff;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    color: #fff;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, #1e4d2b 0%, #27ae60 100%);
}

.table-primary {
    background: linear-gradient(135deg, #1e4d2b 0%, #27ae60 100%);
}

.table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
    vertical-align: top;
}

.table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e9ecef;
    text-align: left;
    vertical-align: top;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.table-hover tbody tr:hover {
    background: rgba(46, 204, 113, 0.1);
    cursor: pointer;
}

.table td strong {
    color: #2ecc71;
}

.table-sm td {
    padding: 0.5rem;
    font-size: 0.875rem;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.3);
    border-color: rgba(46, 204, 113, 0.5);
}

.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.card:hover .card-img-top {
    filter: brightness(1.1);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    text-align: left;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body p {
    color: #e9ecef;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.card-body strong {
    color: #fff;
}

/* Accordion Styles for FAQ */
.accordion {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.2);
    margin-bottom: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(30, 77, 43, 0.6) 0%, rgba(39, 174, 96, 0.3) 100%);
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.accordion-button strong {
    color: #fff;
    font-weight: 600;
    flex: 1;
}

.accordion-button::after {
    content: '▼';
    font-size: 0.8rem;
    color: #2ecc71;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

.accordion-button:hover {
    background: linear-gradient(135deg, rgba(30, 77, 43, 0.8) 0%, rgba(39, 174, 96, 0.5) 100%);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-collapse.show {
    max-height: 5000px;
}

.accordion-body {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    color: #e9ecef;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.accordion-body p,
.accordion-body ul,
.accordion-body ol {
    width: 100%;
    box-sizing: border-box;
}

.accordion-body ul {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.accordion-body ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    text-align: left;
}

.accordion-body ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.accordion-body ol {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    counter-reset: item;
}

.accordion-body ol li {
    counter-increment: item;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    text-align: left;
}

.accordion-body ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.accordion-body strong {
    color: #fff;
}

.accordion-body .table {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* Code Tag */
code {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    display: inline-block;
    margin: 0;
}

/* Strong Tags */
.container strong,
.accordion-body strong,
.alert strong,
.card-body strong {
    color: #fff;
}

/* Em Tags */
.container em,
.accordion-body em,
.alert em {
    color: #f39c12;
}

/* Responsive Image Sizing */
@media (max-width: 768px) {
    .content-hero-img {
        max-width: 95%;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        padding: 0.25rem;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .container.py-5 {
        padding: 2rem 0.5rem;
    }
    
    .py-5.bg-light {
        padding: 2rem 0;
    }
    
    .container.py-5 h2 {
        font-size: 1.5rem;
    }
    
    .container.py-5 h3 {
        font-size: 1.25rem;
    }
    
    .container.py-5 h4 {
        font-size: 1.1rem;
    }
    
    .table {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .content-hero-img {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
    }
}

/* Lazy Loading Image Fade-in */
.content-hero-img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section.container.py-5 + section.py-5.bg-light,
section.py-5.bg-light + section.container.py-5 {
    margin-top: 2rem;
}

/* Ensure Images Don't Overflow */
section img {
    max-width: 100%;
    height: auto;
}
