/* =============================================
   HOME PAGE STYLES (Demon Theme)
   ============================================= */



/* Skyscrapers: Sadece ana sayfada göster */
.skyscraper {
    display: flex !important;
}

/* Mobilde yan reklamları gizle */
@media (max-width: 1100px) {
    .skyscraper {
        display: none !important;
    }
}

.page-wrapper {
    background: #000;
    background-image:
        radial-gradient(circle at 50% -20%, #2a0000 0%, transparent 50%),
        radial-gradient(circle at 50% 120%, #1a0000 0%, transparent 50%);
    position: relative;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 60px;
}

/* Ana sayfa içerik wrapper - skyscraperlarla çakışmayı engeller */
.home-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Hero Logo Container */
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-top: -50px; /* Videoyu navbar'ın altına doğru yukarı çeker */
    margin-bottom: 0;
    perspective: 1000px;
    animation: hero-swing 6s ease-in-out infinite;
    position: relative;
    z-index: 5;
}



@keyframes hero-swing {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.hero-logo-img {
    width: 650px;
    max-width: 95vw;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(255, 0, 0, 0.5)) 
            saturate(1.2) 
            contrast(1.1) 
            hue-rotate(-5deg);
    border: none !important;
    outline: none !important;
    background: transparent !important;
    
    /* ORİJİNAL LÜKS GÖRÜNÜM */
    mix-blend-mode: color-dodge;
    
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0.7) 45%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0.7) 45%, transparent 70%);
    
    transition: transform 0.3s ease;
    user-select: none;
    pointer-events: none;
    will-change: transform;
}



/* Hero Section */
.hero-demon {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px; /* Üst padding tamamen kaldırıldı */
}



.hero-content-demon {
    max-width: 900px;
    z-index: 10;
}

.hero-title-demon {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-top: -110px;
    margin-bottom: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(to top, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8)); /* Efekt daha keskin ve belirgin yapıldı */
    position: relative;
    z-index: 10;
    pointer-events: none;
}





.hero-desc-demon {
    font-size: 0.95rem;
    color: #ffffff; /* Yazı tamamen beyaz yapıldı */
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500; /* Biraz daha okunabilir olması için kalınlık eklendi */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Siyah zemin üzerinde daha net durması için */
}




/* ===== KATEGORİ GRID (3x2) ===== */
.home-content-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    z-index: 10;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: -10px auto 0; /* Grid yukarı çekildi */
}


@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px auto;
    }

    /* MOBİL PERFORMANS AYARI */
    .hero-logo-img {
        width: 320px !important; /* Mobilde daha küçük, daha hızlı */
        filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3)) !important;
        mix-blend-mode: screen !important; /* Mobilde daha hafif bir işlem */
        -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%) !important;
        mask-image: radial-gradient(circle, black 30%, transparent 70%) !important;

    }

    .hero-logo-wrap {
        position: relative;
        z-index: 1;
        margin-bottom: -50px !important;
        animation: hero-swing-mobile 4s ease-in-out infinite !important;
    }

    .hero-title-demon {
        position: relative;
        z-index: 10;
        margin-top: -60px !important; /* Mobilde daha dengeli bir üst üste binme */
        text-shadow: 0 0 20px rgba(0,0,0,0.8);
    }

    .hero-desc-demon {
        position: relative;
        z-index: 10;
        padding: 0 10px;
    }

    @keyframes hero-swing-mobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }


    /* İstenen Sıralama: Ana Sponsor en üstte tek, diğerleri yan yana */
    .cat-box:nth-child(1),
    .cat-box:nth-child(6) {
        grid-column: span 2;
        min-height: 80px;
    }

    .cat-box {
        padding: 18px 15px !important;
        min-height: 75px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px !important;
    }

    .cat-box .cat-icon {
        font-size: 24px !important;
    }

    .cat-label {
        font-size: 0.8rem !important;
        text-align: center;
        font-weight: 800;
        letter-spacing: 1px;
    }
}

.cat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cat-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cat-box .cat-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cat-box:hover .cat-icon {
    transform: scale(1.2);
}

.cat-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* New Category Colors */
.cat-orange-main {
    border-left: 4px solid #ff6600;
}

.cat-orange-main .cat-label {
    background: linear-gradient(to top, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cat-orange-main:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
    border-color: #ff6600;
}

.cat-blue-main {
    border-left: 4px solid #00d2ff;
}

.cat-blue-main:hover {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
    border-color: #00d2ff;
}

.cat-green-main {
    border-left: 4px solid #00e676;
}

.cat-green-main:hover {
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
    border-color: #00e676;
}

.cat-red-main {
    border-left: 4px solid #ff0000;
}

.cat-red-main:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.cat-white-main {
    border-left: 4px solid #ffffff;
}

.cat-white-main:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.cat-rainbow-main {
    border-left: 4px solid #ff0080;
}

.cat-rainbow-main:hover {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
    border-color: #ff0080;
}

.category-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cat-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.cat-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Renk temaları */
.cat-gold {
    border-left: 3px solid #ffd700;
}

/* Kırmızıdan Beyaza Gradyan Metin - Sadece Ana Sponsorlar İçin */
@media (max-width: 768px) {
    .cat-gold .cat-label {
        background: linear-gradient(to top, #ff0000 0%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        /* Biraz daha kalın dursun */
    }
}

.cat-gold:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.cat-purple {
    border-left: 3px solid #9b59b6;
}

.cat-purple:hover {
    border-color: #9b59b6;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.15);
}

.cat-pink {
    border-left: 3px solid #e91e63;
}

.cat-pink:hover {
    border-color: #e91e63;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
}

.cat-green {
    border-left: 3px solid #00e676;
}

.cat-green:hover {
    border-color: #00e676;
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.15);
}

.cat-blue {
    border-left: 3px solid #2196f3;
}

.cat-blue:hover {
    border-color: #2196f3;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.15);
}

.cat-orange {
    border-left: 3px solid #ff9800;
}

.cat-orange:hover {
    border-color: #ff9800;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.15);
}

/* Reward banner wrap */
.reward-banner-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-btns-demon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: white;
}

.play-icon {
    font-size: 0.8rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.6;
    z-index: 10;
}

.scroll-down .line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

/* Sponsors Marquee v2 - Top Positioned */
.sponsors-marquee-v2 {
    width: 100%;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    overflow: hidden;
    z-index: 100;
}

.marquee-content-v2 {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: marquee-v2 300s linear infinite;
}

.marquee-content-v2:hover {
    animation-play-state: paused;
}

.sponsor-logo-v2 {
    height: 40px;
    filter: grayscale(1) opacity(0.6);
    transition: var(--transition);
    object-fit: contain;
}

.sponsor-logo-v2:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes marquee-v2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   ADVERTISEMENT SYSTEM (TOD V2)
   ============================================= */

/* Skyscrapers */
.skyscraper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 700px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 12px;
    z-index: 1000;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skyscraper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(180deg, transparent, var(--glow-color, #ff0000), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    animation: glow-slide 4s linear infinite;
}

.ls-left {
    left: 40px;
    --glow-color: #ff3c3c;
}

.ls-right {
    right: 40px;
    --glow-color: #ff3c3c;
}

.skyscraper-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.skyscraper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents distortion */
    background: rgba(0, 0, 0, 0.2);
    /* Fills empty space if image ratio differs */
    transition: opacity 1s ease-in-out, transform 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.skyscraper img.active {
    opacity: 1;
    z-index: 2;
}

.skyscraper:hover img.active {
    transform: scale(1.05);
}

/* Sticky Ad Bar (Premium UI) */
.sticky-ad-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 2000;
    padding: 10px;
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: sticky-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-ad-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sticky-ad-inner {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-ad-inner a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-ad-inner img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sticky-ad-inner a:hover img {
    transform: translateY(-3px) scale(1.02);
}

.close-sticky {
    position: absolute;
    right: -5px;
    top: -5px;
    background: #ff0000;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2001;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.close-sticky:hover {
    transform: scale(1.1) rotate(90deg);
    background: #cc0000;
}

@keyframes sticky-slide-up {
    from {
        transform: translate(-50%, 150%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .skyscraper {
        display: none;
    }
}

@media (max-width: 768px) {
    .sticky-ad-inner {
        height: 60px;
    }
}

/* Popup Modal (Premium UI) */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), transparent, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

.popup-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    display: block;
    object-fit: contain;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.close-popup:hover {
    transform: scale(1.1) rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =============================================
   REWARD BANNER (Premium Dark UI)
   ============================================= */
.reward-banner-wrap {
    padding: 0 20px;
    max-width: 1200px;
    margin: 50px auto 40px;
    z-index: 100;
}

.reward-banner {

    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(25, 10, 10, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    min-height: 280px;
}

/* ── MINI BONUS GRID ── */
.mini-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1100px;
}

.mini-card-shell {
    position: relative;
    border-radius: 12px;
    padding: 1.5px;
    background: #111;
    overflow: hidden;
}

.mini-card-shell::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
            transparent 0deg,
            transparent 320deg,
            #550000 325deg,
            #cc2200 335deg,
            #ff4400 342deg,
            #ffaa00 347deg,
            #ffffff 350deg,
            #ffaa00 353deg,
            #ff4400 357deg,
            transparent 360deg);
    animation: led-spin 4s linear infinite;
    z-index: 0;
}


.mini-card-shell::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgb(12, 15, 20);
    border-radius: 10.5px;
    z-index: 1;
}

.mini-card {
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    width: 100%;
    padding: 10px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.28s ease;
}

.mini-card:hover {
    transform: translateY(-4px);
}

.mini-card .mini-fire-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 10px;
    background: linear-gradient(to top, rgba(255, 30, 0, 0.28) 0%, rgba(160, 0, 0, 0.10) 38%, transparent 68%);
    animation: inner-fire 8s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* ── AD PLACEHOLDER STYLE ── */
.ad-placeholder-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ad-logo-area {
    width: 45px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 12px;
}

.ad-logo-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    opacity: 1;
}


.ad-text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.ad-text-area .ad-title {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.ad-text-area .ad-title .line-1 {
    background: linear-gradient(to bottom, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.3px rgba(212, 175, 55, 0.4);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.ad-text-area .ad-title .line-2 {
    background: linear-gradient(to bottom, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.3px rgba(212, 175, 55, 0.4);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.ad-text-area .ad-subtitle {
    background: linear-gradient(to bottom, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.2px rgba(212, 175, 55, 0.3);
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.2));
}









.mini-card .mini-logo-img {
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.9);
    transition: all 0.28s ease;
    z-index: 1;
}

.mini-card:hover .mini-logo-img {
    filter: brightness(1.2) saturate(1.1);
    transform: scale(1.05);
}

@keyframes led-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@keyframes inner-fire {
    0%, 100% { opacity: 0.35; background: linear-gradient(to top, rgba(255, 30, 0, 0.3) 0%, rgba(180, 0, 0, 0.08) 40%, transparent 70%); }
    50% { opacity: 0.5; background: linear-gradient(to top, rgba(255, 50, 0, 0.38) 0%, rgba(200, 10, 0, 0.1) 45%, transparent 72%); }
}

@media (max-width: 850px) {
    .mini-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
    }
    
    .mini-card {
        min-height: 90px;
    }
    
    .mini-logo-img {
        max-height: 30px;
    }
}