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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
}

header.hero-section {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    padding: 50px 0;
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease;
}

.site-logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-btn {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #218838;
}

.games-section {
    background-color: white;
    padding: 50px 0;
    text-align: center;
    animation: slideInUp 1.5s ease;
}

.games-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.game-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.game-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 2s ease;
}

.winners-section {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
    animation: slideInUp 2s ease;
}

.winners-slider {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
    padding: 0 20px;
}

.winner {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    width: 200px;
    animation: fadeIn 2s ease;
}

.faq-section {
    background-color: white;
    padding: 50px 0;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    animation: slideInUp 2s ease;
}

.faq-item {
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease;
}

.faq-question {
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-answer {
    display: none;
    font-size: 1rem;
    color: #555;
    padding: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    animation: fadeIn 2s ease;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.sticky-download {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    background: #28a745;
}

.sticky-download .download-btn {
    background: #28a745;
    color: white;
    padding: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.sticky-download .download-btn:hover {
    background: #218838;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive logo and layout adjustments */
@media (max-width: 768px) {
    .site-logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        max-width: 100px;
    }
}
