/* Pages CSS - 内页专用样式 */

/* 页面内容区域 */
.page-content {
    padding: 2rem 0;
    min-height: 60vh;
}

/* 内页横幅图片区域 - 使用首页样式 */
.page-hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 50%, #DEE2E6 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--casino-gold);
    margin-bottom: 2rem;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

.page-hero-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 3px solid var(--casino-gold);
    width: 100%;
    height: auto;
    display: block;
}

.banner-image:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 35px 70px rgba(255, 215, 0, 0.3);
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.page-hero-banner-content {
    text-align: left;
}

.page-hero-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--casino-black);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    text-transform: none;
    letter-spacing: 0.5px;
}

.page-hero-banner p {
    font-size: 1.25rem;
    color: var(--casino-black);
    margin-bottom: 32px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.page-hero-banner .btn {
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
}

/* 横幅图片区域 */
.page-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--casino-purple), var(--casino-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--casino-white);
    margin-bottom: 2rem;
}

.page-banner-content {
    z-index: 2;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-hero {
    background: linear-gradient(135deg, var(--casino-purple), var(--casino-gold));
    padding: 3rem 0;
    text-align: center;
    color: var(--casino-white);
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 游戏页面样式 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--casino-gold);
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--casino-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--casino-black);
}

.game-card h3 {
    color: var(--casino-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Game Image Styles */
.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.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 ease;
}

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

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--casino-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.game-card h3 {
    color: var(--casino-black);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.game-card p {
    color: var(--casino-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* 平台页面样式 */
.platform-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-item h4 {
    color: var(--casino-black);
    margin-bottom: 0.5rem;
}

/* 下载页面样式 */
.download-section {
    background: linear-gradient(135deg, var(--casino-gold), var(--casino-purple));
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
    color: var(--casino-white);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.download-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--casino-white);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 社交页面样式 */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.social-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--casino-white);
}

.telegram-icon {
    background: #0088cc;
}

.facebook-icon {
    background: #1877f2;
}

/* 促销页面样式 */
.promo-section {
    background: linear-gradient(135deg, var(--casino-gold), #ff6b35);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
    color: var(--casino-white);
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    color: var(--casino-black);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.promo-badge {
    background: var(--casino-gold-gradient);
    color: var(--casino-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* 通用页面样式 */
.page-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-section h2 {
    color: var(--casino-black);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.page-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* 底部导航样式 */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.9));
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.footer-section {
    text-align: left;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.footer-section::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 ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.footer-section h4 {
    color: var(--casino-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--casino-gold-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 50px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    opacity: 0.9;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-section ul li::before {
    content: '▶';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--casino-gold);
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: 25px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    white-space: nowrap;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--casino-gold-gradient);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-section ul li a:hover {
    color: var(--casino-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin: 0 auto 1rem auto;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
}

.footer-section:hover .footer-logo {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--casino-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    color: #ffffff;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.95));
    border-radius: 15px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    animation: shimmer 3s infinite;
}

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

.footer-bottom p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 500;
    color: #ffffff;
}

/* 响应式设计 */
/* 平板电脑和中等屏幕 */
@media (max-width: 1024px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-section {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 200px;
        max-width: 300px;
    }

    .page-hero-banner {
        padding: 20px 0;
    }
    
    .page-hero-banner .container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .page-hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-banner p {
        font-size: 1rem;
    }
}

/* 小平板和大手机 */
@media (max-width: 768px) {
    .page-hero-banner {
        padding: 20px 0;
    }
    
    .page-hero-banner .container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .page-hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-banner p {
        font-size: 1rem;
    }
    
    .page-hero-banner .btn {
        width: 100%;
        max-width: 300px;
        margin-top: 1.5rem;
    }
    
    .page-banner {
        height: 300px;
        background-attachment: scroll;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .games-grid,
    .platform-features,
    .social-grid,
    .promo-cards {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .platform-section,
    .download-section,
    .promo-section {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .footer-section {
        flex: 0 1 calc(50% - 0.5rem);
        padding: 1rem;
        max-width: 250px;
        min-width: 180px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
}

/* 中等手机屏幕 */
@media (max-width: 600px) {

    
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .footer-section {
        flex: 0 1 calc(50% - 0.4rem);
        padding: 0.8rem;
        max-width: 200px;
        min-width: 140px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
    }
    
    .footer-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* 小手机屏幕 */
@media (max-width: 480px) {
    .page-hero-banner h1 {
        font-size: 1.5rem;
    }
    
    .page-hero-banner .btn {
        font-size: 14px;
        padding: 12px 24px;
        margin-top: 1rem;
    }
    
    .page-banner {
        height: 250px;
    }
    
    .page-content {
        padding: 1rem 0;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .game-card,
    .social-card,
    .promo-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        padding: 1.2rem 0.5rem;
        margin: 0.5rem 0;
    }
    
    .footer-section {
        flex: none;
        text-align: center;
        padding: 0.6rem 0.5rem;
        max-width: none;
        min-width: auto;
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
        flex: 0 0 auto;
    }
    
    .footer-section ul li a {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.2);
        white-space: nowrap;
    }
    
    .footer-section ul li a:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: var(--casino-gold);
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 0.6rem;
    }
    
    .footer-section p {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1.2rem 0;
        font-size: 0.75rem;
    }
}

/* 超小屏幕 */
@media (max-width: 360px) {

    
    .footer-content {
        padding: 1rem 0.3rem;
        gap: 0.5rem;
    }
    
    .footer-section {
        padding: 0.5rem 0.3rem;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul {
        gap: 0.2rem;
    }
    
    .footer-section ul li a {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
    }
    
    .footer-logo {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.7rem;
    }
}