/* 80bet - CSS全新设计（橙紫配色，网格布局，非sticky导航） */

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

:root {
    --primary-orange: #FF8C00;
    --primary-purple: #6A0DAD;
    --dark-bg: #0A0A0A;
    --light-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --accent-gold: #FFD700;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Header - Non-sticky */
header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

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

.logo-container .logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.cta-button {
    background-color: var(--accent-gold);
    color: var(--dark-bg) !important;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, var(--primary-purple), var(--dark-bg));
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

/* Sections */
section {
    padding: 60px 20px;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

section h2 {
    font-size: 2.2em;
    color: var(--primary-orange);
    margin-bottom: 30px;
    text-align: center;
}

section h3 {
    font-size: 1.6em;
    color: var(--accent-gold);
    margin: 25px 0 15px 0;
}

section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1.1em;
}

section ul {
    margin: 20px 0 20px 40px;
    color: var(--text-gray);
}

section ul li {
    margin-bottom: 10px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

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

.game-card h3 {
    padding: 20px 20px 10px 20px;
    color: var(--primary-orange);
    font-size: 1.4em;
    margin: 0;
}

.game-card p {
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 1em;
}

.game-card a {
    display: block;
    text-align: center;
    background-color: var(--primary-purple);
    color: var(--text-light);
    padding: 12px;
    margin: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.game-card a:hover {
    background-color: var(--primary-orange);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

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

.review-header strong {
    color: var(--accent-gold);
    font-size: 1.2em;
}

.review-location {
    display: block;
    color: var(--text-gray);
    font-size: 0.9em;
    margin-top: 5px;
}

.review-rating {
    color: var(--accent-gold);
    font-size: 1.3em;
    margin-top: 8px;
}

.review-text {
    color: var(--text-gray);
    font-style: italic;
    margin: 15px 0;
}

.review-date {
    color: #888;
    font-size: 0.85em;
}

/* FAQ */
.faq-item {
    background-color: var(--light-bg);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-purple);
}

.faq-item h3 {
    color: var(--primary-orange);
    margin-top: 0;
}

/* Author Box */
.author-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-purple);
    margin-top: 20px;
}

.author-box h3 {
    color: var(--accent-gold);
    margin-top: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-bg));
    padding: 50px 20px 20px 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.3em;
}

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

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

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

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

.age-restriction {
    color: var(--accent-gold);
    font-weight: 700;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--text-gray);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .games-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    section h2 {
        font-size: 1.8em;
    }
}
