.image-button:hover img {
    transform: scale(1.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a4d3a;
    --accent-teal: #20b2aa;
    --dark-bg: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --hover-glow: #20b2aa40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.section {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.hero {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--hover-glow) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
    display: block;
    object-fit: contain;
    object-position: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-teal), #ffffff, var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.game-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.button-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-button {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.image-button img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.social-button {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    padding: 0.5rem;
}

.social-button img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.social-button:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-button:hover img {
    transform: rotate(5deg);
}

.copyright {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .game-buttons {
        gap: 1.5rem;
    }

    .button-container {
        gap: 1.5rem;
    }

    .image-button img {
        width: 140px;
        height: 140px;
        object-fit: contain;
        object-position: center;
    }

    .social-links {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-button img {
        width: 50px;
        height: 50px;
    }
}