/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #004d40 0%, #00251a 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* Header styles */
header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 50px;
    height: 50px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-3px);
}

/* Games section */
.games-section {
    padding: 2rem 0;
}

.games-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd700;
}

.games-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.game-card h3 {
    color: #ffd700;
}

/* Benefits section */
.benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd700;
}

.benefits ul {
    list-style-type: none;
    padding-left: 1rem;
}

.benefits li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

/* Stats section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stats h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd700;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

/* FAQ section */
.faq {
    margin: 2rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
}

footer a {
    color: #ffffff80;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-icons img {
        width: 30px;
    }
}