/* 444bet Brazil - 深紫色+银色高端风格 */

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

:root {
    --primary-color: #4A148C;
    --secondary-color: #C0C0C0;
    --accent-color: #7B1FA2;
    --text-color: #FFFFFF;
    --bg-color: #1A0033;
    --card-bg: #2D1B4E;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--primary-color) 100%);
    color: var(--text-color);
    line-height: 1.8;
    min-height: 100vh;
}

/* Header - 非粘性 */
header {
    background: rgba(74, 20, 140, 0.95);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3);
    position: relative;
}

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

.logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
}

nav {
    margin-top: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--text-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(74, 20, 140, 0.8), rgba(123, 31, 162, 0.8)),
                url('../images/hero-bg.jpg') center/cover;
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(192, 192, 192, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(192, 192, 192, 0.6);
}

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

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.2);
    border: 2px solid var(--accent-color);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(192, 192, 192, 0.4);
}

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

.game-card-content {
    padding: 1.5rem;
}

.game-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.game-card p {
    color: #E0E0E0;
    line-height: 1.6;
}

/* Content Sections */
section {
    background: rgba(45, 27, 78, 0.7);
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--secondary-color);
}

section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.6rem;
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

/* FAQ */
.faq-item {
    background: rgba(74, 20, 140, 0.3);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

/* Reviews */
.review {
    background: rgba(74, 20, 140, 0.3);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: rgba(26, 0, 51, 0.95);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
    color: #B0B0B0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 2rem 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
