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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 动态背景粒子效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #ffd700, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, #ff6b6b, transparent),
        radial-gradient(1px 1px at 130px 80px, #667eea, transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleMove 20s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

/* 添加流星效果 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent),
        linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    background-size: 200% 200%;
    animation: meteorShower 15s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 弹窗样式 */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 0;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.7);
    transition: transform 0.3s ease;
    overflow: hidden;
    border: 2px solid #ffd700;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 20px;
    text-align: center;
    color: #1a2332;
    position: relative;
}

.modal-header i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: #1a2332;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(26, 35, 50, 0.2);
}

.modal-body {
    padding: 20px;
    color: white;
    text-align: center;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(10px);
    border-color: #ffd700;
}

.contact-option i {
    font-size: 2rem;
    color: #ffd700;
}

.contact-option div {
    display: flex;
    flex-direction: column;
}

.contact-option strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-option span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.btn-contact {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a2332;
    font-weight: bold;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-benefit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* 动画效果 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes particleMove {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-100px) translateX(50px); }
    50% { transform: translateY(-200px) translateX(-30px); }
    75% { transform: translateY(-300px) translateX(80px); }
    100% { transform: translateY(-400px) translateX(0px); }
}

@keyframes meteorShower {
    0% {
        background-position: -200% -200%, -200% -200%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        background-position: 200% 200%, 200% 200%;
        opacity: 0;
    }
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            0 0 60px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.5),
            0 0 90px rgba(255, 215, 0, 0.3);
    }
}

@keyframes hologram {
    0% {
        background-position: 0% 0%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 100% 0%;
        filter: hue-rotate(90deg);
    }
    50% {
        background-position: 100% 100%;
        filter: hue-rotate(180deg);
    }
    75% {
        background-position: 0% 100%;
        filter: hue-rotate(270deg);
    }
    100% {
        background-position: 0% 0%;
        filter: hue-rotate(360deg);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 游戏展示区域 */
.game-showcase {
    min-height: 100vh;
    padding: 60px 20px;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.main-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 游戏网格 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* 小游戏卡片 */
.mini-game-card {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
        rgba(26, 35, 50, 0.9);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

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

.mini-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3);
}

.mini-game-card.featured {
    border-color: rgba(255, 107, 107, 0.5);
    background:
        linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(26, 35, 50, 0.9);
}

.mini-game-card.featured:hover {
    border-color: rgba(255, 107, 107, 0.8);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 107, 107, 0.4);
}

/* 游戏背景图片 */
.poker-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.191829838.com/prod-images/game_icon/bit8hkdf1/bigImage/gcs__PVP-JDB_1752484389579.png');
}

.baccarat-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=400&h=300&fit=crop&crop=center');
}

.blackjack-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1606092195730-5d7b9af1efc5?w=400&h=300&fit=crop&crop=center');
}

.roulette-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=400&h=300&fit=crop&crop=center');
}

.sicbo-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.191829838.com/prod-images/game_icon/bit8hkdf1/bigImage/gcs__PVP-JDB_1752484389579.png');
}

.dragon-tiger-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.191829838.com/prod-images/game_icon/bit8hkdf1/bigImage/gcs__RNG-PG_1749456933015.png');
}

.niuniu-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1541278107931-e006523892df?w=400&h=300&fit=crop&crop=center');
}

.zhajinhua-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('	https://images.191829838.com/prod-images/game_icon/bit8hkdf1/bigImage/gcs__PVP-RG_1752484390370.png');
}

.mahjong-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1606092195730-5d7b9af1efc5?w=400&h=300&fit=crop&crop=center');
}

.doudizhu-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=400&h=300&fit=crop&crop=center');
}

.fishing-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=400&h=300&fit=crop&crop=center');
}

.slots-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=400&h=300&fit=crop&crop=center');
}

/* 卡片头部 */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 各种徽章样式 */
.hot-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.new-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a2332;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.live-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.fast-badge {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.simple-badge {
    background: linear-gradient(135deg, #2ed573, #1dd1a1);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.fun-badge {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.classic-badge {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.skill-badge {
    background: linear-gradient(135deg, #5f27cd, #341f97);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.team-badge {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.relax-badge {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.jackpot-badge {
    background: linear-gradient(135deg, #ff9f43, #feca57);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 评分样式 */
.rating {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: bold;
}

/* 卡片内容区域 */
.card-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

/* 卡片标题 */
.mini-game-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* 卡片描述 */
.mini-game-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* 卡片底部 */
.card-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

.players {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* 展示区域底部 */
.showcase-footer {
    text-align: center;
    margin-top: 50px;
}

.footer-note {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* 为不同的卡片添加悬浮动画延迟 */
.mini-game-card:nth-child(1) { animation-delay: 0.1s; }
.mini-game-card:nth-child(2) { animation-delay: 0.2s; }
.mini-game-card:nth-child(3) { animation-delay: 0.3s; }
.mini-game-card:nth-child(4) { animation-delay: 0.4s; }
.mini-game-card:nth-child(5) { animation-delay: 0.5s; }
.mini-game-card:nth-child(6) { animation-delay: 0.6s; }
.mini-game-card:nth-child(7) { animation-delay: 0.7s; }
.mini-game-card:nth-child(8) { animation-delay: 0.8s; }
.mini-game-card:nth-child(9) { animation-delay: 0.9s; }
.mini-game-card:nth-child(10) { animation-delay: 1.0s; }
.mini-game-card:nth-child(11) { animation-delay: 1.1s; }
.mini-game-card:nth-child(12) { animation-delay: 1.2s; }

/* 卡片入场动画 */
@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mini-game-card {
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
}

.game-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(26, 35, 50, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: hologram 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 215, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: neonGlow 2s ease-in-out infinite;
}

.game-header {
    position: relative;
    height: 300px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(102, 126, 234, 0.1) 50%, transparent 60%);
    background-size: 100px 100px, 150px 150px;
    animation: particleMove 10s linear infinite;
    z-index: 1;
}

.game-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(2px 2px at 50px 100px, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 250px 150px, rgba(102, 126, 234, 0.6), transparent);
    background-size: 300px 200px;
    animation: particleMove 15s linear infinite reverse;
    z-index: 1;
}

.game-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.poker-logo {
    width: 80px;
    height: 80px;
    background: #1a2332;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.poker-logo i {
    margin-right: 5px;
}

.game-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poker-table {
    position: relative;
    width: 250px;
    height: 150px;
    background:
        radial-gradient(ellipse at center, #0a3d26 0%, #062a1a 70%, #041f13 100%);
    border-radius: 75px;
    border: 5px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    animation: neonGlow 3s ease-in-out infinite;
}

.poker-table::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 78px;
    z-index: -1;
    animation: hologram 2s ease-in-out infinite;
}

.poker-cards {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 20px;
}

.card {
    width: 35px;
    height: 50px;
    background:
        linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: cardFlip 3s infinite;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 4;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.2) 50%, transparent 70%);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card-spade, .card-club { color: #000; }
.card-heart, .card-diamond { color: #ff0000; }

.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 1s; }
.card:nth-child(4) { animation-delay: 1.5s; }

.poker-chips {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 5px;
}

.chip {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 255, 255, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 4;
}

.chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.chip-red {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #ff4757, #e55656);
    animation: float 2s ease-in-out infinite;
}
.chip-blue {
    background: radial-gradient(circle at 30% 30%, #5a67d8, #3742fa, #2f36d8);
    animation: float 2s ease-in-out infinite 0.3s;
}
.chip-green {
    background: radial-gradient(circle at 30% 30%, #48bb78, #2ed573, #26c65a);
    animation: float 2s ease-in-out infinite 0.6s;
}

/* 游戏信息区域 */
.game-info {
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    color: white;
}

.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.game-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hot-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
}

.stars {
    color: #ffd700;
}

.game-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.game-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a2332;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
}

.game-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

.update-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* 福利展示区域 */
.benefits-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.benefit-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a2332;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA区域 */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 浮动客服按钮 */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.floating-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a2332;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.floating-btn i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.floating-btn span {
    font-size: 0.8rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .game-showcase {
        padding: 40px 15px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .main-subtitle {
        font-size: 1.1rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .mini-game-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 2.5rem;
        margin: 15px 0;
    }

    .mini-game-card h3 {
        font-size: 1.2rem;
    }

    .mini-game-card p {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .floating-btn i {
        font-size: 1.3rem;
    }

    .floating-btn span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .game-showcase {
        padding: 30px 10px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .main-subtitle {
        font-size: 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mini-game-card {
        padding: 18px;
    }

    .card-header {
        margin-bottom: 15px;
    }

    .card-icon {
        font-size: 2.2rem;
        margin: 12px 0;
    }

    .mini-game-card h3 {
        font-size: 1.1rem;
    }

    .mini-game-card p {
        font-size: 0.85rem;
    }

    .benefits-section {
        padding: 40px 0;
    }

    .benefit-card {
        padding: 20px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .contact-options {
        gap: 0.5rem;
        
    }

    .contact-option {
        padding: 12px;
        display: flex;
        justify-content: center;
    }
}
