* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3095b868811f6a2eeccb66aca35cced.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #4caf50;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    position: relative;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(76, 175, 80, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(76, 175, 80, 0.5);
    }
}

.tagline {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #e0f7fa;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #388e3c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    background-color: #388e3c;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.download-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.google-play {
    background-color: #4285F4;
}

.google-play:hover {
    background-color: #3367D6;
}

.app-store {
    background-color: #000;
}

.app-store:hover {
    background-color: #333;
}

.game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.screenshot {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.screenshot:hover {
    transform: scale(1.03);
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.screenshot p {
    padding: 1rem;
    font-weight: 600;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e0f7fa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4caf50;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 80%;
    }
} 