.hero-logo {
    width: 200px;
    height: 200px;
}

.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:hover img {
    transform: scale(1.05);
}

.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%);
}

@media (max-width: 768px) {
    .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;
    }
}
