.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-banner {
    margin-top: 2rem;
    text-align: center;
}

.hero-banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.banner-carousel {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.banner-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.featured-games {
    margin-bottom: 3rem;
    text-align: center;
}

.featured-games h3 {
    color: var(--neon-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.game-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.game-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.game-info h4 {
    color: var(--neon-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.game-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-item {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.payment-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-item:hover::before {
    opacity: 1;
}

.payment-item:hover {
    transform: translateY(-3px);
}

.payment-icon-img {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.payment-item span {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.table-icon {
    width: 24px;
    height: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.provider-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(50%);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem;
}

.provider-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.footer-badge {
    width: 60px;
    height: auto;
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-payment {
    width: 40px;
    height: auto;
    margin: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-payment:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
    
    .banner-slider {
        height: 200px;
    }
    
    .games-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .game-img {
        height: 100px;
    }
    
    .payment-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .provider-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

.game-neon:hover .category-icon,
.featured-games .game-card:hover .game-img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

html {
    scroll-behavior: smooth;
}

.game-neon,
.payment-item,
.game-card {
    backdrop-filter: blur(10px);
}

.hero-banner-img:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.4);
}

.category-icon:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

img {
    loading: lazy;
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
}

@media print {
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    .banner-carousel,
    .hero-banner {
        display: none;
    }
}