/* Zootopia Casino Theme - 疯狂动物城主题 */
:root {
    --primary-teal: #00A896;
    --primary-orange: #FF6B35;
    --primary-purple: #7B2D8E;
    --accent-gold: #FFD700;
    --accent-pink: #FF69B4;
    --bg-dark: #1A1A2E;
    --bg-medium: #16213E;
    --bg-light: #0F3460;
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-muted: #A0A0A0;
    --gradient-main: linear-gradient(135deg, #00A896 0%, #7B2D8E 50%, #FF6B35 100%);
    --gradient-card: linear-gradient(180deg, rgba(0,168,150,0.2) 0%, rgba(123,45,142,0.2) 100%);
    --shadow-glow: 0 0 30px rgba(0,168,150,0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0,168,150,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123,45,142,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
    z-index: -1;
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Header */
.header {
    background: linear-gradient(180deg, var(--bg-medium) 0%, transparent 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: var(--primary-teal);
    background: rgba(0,168,150,0.15);
}

.cta-header {
    background: var(--gradient-main);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,168,150,0.4);
}

.cta-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,168,150,0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,168,150,0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: white;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    animation: float 4s ease-in-out infinite;
}

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

/* Bonus Banner */
.bonus-banner {
    background: var(--gradient-main);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: 0 0 50px rgba(0,168,150,0.6); }
}

.bonus-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.bonus-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -35px;
    margin-bottom: 50px;
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,168,150,0.2);
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-teal);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.game-card .btn-play {
    background: var(--gradient-main);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.game-card .btn-play:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-medium);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,168,150,0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-teal);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.payment-item {
    background: var(--bg-medium);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.payment-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-item span {
    display: block;
    color: var(--text-light);
    font-weight: 500;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-medium);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-info h4 {
    color: var(--text-white);
    font-size: 1rem;
}

.review-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-medium);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0,168,150,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-teal);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Expert Section */
.expert-section {
    background: var(--bg-medium);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(0,168,150,0.2);
}

.expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.expert-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-teal);
}

.expert-info .title {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.expert-info p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsible Gaming */
.responsible-gaming {
    background: var(--bg-medium);
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    border: 2px solid var(--primary-orange);
}

.responsible-gaming img {
    width: 80px;
    margin-bottom: 20px;
}

.responsible-gaming h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.responsible-gaming p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-medium);
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-teal);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-badges img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

/* Breadcrumb */
.breadcrumb {
    padding: 100px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb li {
    color: var(--text-muted);
}

.breadcrumb li::after {
    content: '>';
    margin-left: 10px;
    color: var(--primary-teal);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-teal);
}

/* Content Page */
.content-page {
    padding: 40px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-teal);
}

.content-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-orange);
}

.content-page p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-page ul, .content-page ol {
    color: var(--text-light);
    margin: 20px 0;
    padding-left: 25px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-page img {
    max-width: 100%;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: var(--shadow-glow);
}

.content-cta {
    background: var(--gradient-main);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.content-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.content-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.content-cta .btn-primary {
    background: white;
    color: var(--primary-teal);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .expert-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bonus-banner h2 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .content-page h1 {
        font-size: 1.8rem;
    }
}
