.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.7);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: rgba(231, 76, 60, 0.2);
}

.social-icons img {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .social-icons img {
        width: 18px;
        height: 18px;
    }
}

/* Additional responsive fixes */
@media (max-width: 576px) {
    .feature-card, .executor-card, .game-card {
        padding: 20px 15px;
    }
    
    .feature-icon, .executor-icon {
        margin-bottom: 15px;
    }
    
    .steps-container {
        padding: 15px;
    }
    
    .step {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .footer-disclaimer {
        margin-top: 20px;
    }
}
