/**
 * Hero Banner - Improved Positioning
 * King Size Game - Cyberpunk Theme
 */

/* Enhanced hero content container with better spacing */
.kingsize-hero-banner .hero-content {
    max-width: 1400px !important;
    padding: 3rem 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
}

/* Enhanced logo with triple-layer glow effect */
.kingsize-hero-banner .hero-logo {
    margin-bottom: 0.5rem !important;
    display: inline-block !important;
    animation: fadeInUp 0.8s ease-out !important;
}

.kingsize-hero-banner .hero-logo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 280px !important;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.7))
            drop-shadow(0 0 50px rgba(255, 0, 255, 0.5))
            drop-shadow(0 0 75px rgba(139, 0, 255, 0.3)) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: logo-pulse-enhanced 4s ease-in-out infinite !important;
}

@keyframes logo-pulse-enhanced {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.7))
                drop-shadow(0 0 50px rgba(255, 0, 255, 0.5))
                drop-shadow(0 0 75px rgba(139, 0, 255, 0.3));
        transform: translateY(0) scale(1);
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(0, 240, 255, 0.9))
                drop-shadow(0 0 70px rgba(255, 0, 255, 0.7))
                drop-shadow(0 0 100px rgba(139, 0, 255, 0.5));
        transform: translateY(-5px) scale(1.02);
    }
}

.kingsize-hero-banner .hero-logo img:hover {
    filter: drop-shadow(0 0 40px rgba(0, 240, 255, 1))
            drop-shadow(0 0 80px rgba(255, 0, 255, 0.8))
            drop-shadow(0 0 120px rgba(139, 0, 255, 0.6)) !important;
    transform: scale(1.08) rotate(2deg) !important;
}

/* Improved title spacing */
.kingsize-hero-banner .hero-title {
    margin: 0 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

/* Improved subtitle spacing and styling */
.kingsize-hero-banner .hero-subtitle {
    max-width: 750px !important;
    margin: 0 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.6 !important;
}

/* Improved CTA spacing */
.kingsize-hero-banner .hero-cta {
    margin-top: 1rem !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .kingsize-hero-banner .hero-content {
        padding: 2rem 1rem !important;
        gap: 1.25rem !important;
    }

    .kingsize-hero-banner .hero-logo img {
        max-width: 200px !important;
    }

    .kingsize-hero-banner .hero-logo {
        margin-bottom: 0.25rem !important;
    }

    .kingsize-hero-banner .hero-title {
        margin-bottom: 0.5rem !important;
    }

    .kingsize-hero-banner .hero-subtitle {
        margin-bottom: 0.25rem !important;
    }

    .kingsize-hero-banner .hero-cta {
        margin-top: 0.75rem !important;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .kingsize-hero-banner .hero-content {
        padding: 2.5rem 1.5rem !important;
    }

    .kingsize-hero-banner .hero-logo img {
        max-width: 240px !important;
    }
}

/* Large screens - enhance logo size */
@media (min-width: 1440px) {
    .kingsize-hero-banner .hero-logo img {
        max-width: 320px !important;
    }

    .kingsize-hero-banner .hero-content {
        padding: 4rem 2rem !important;
    }
}

/* Animation for logo entry */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
