@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Outfit:wght@300;400;600;800&display=swap');

.page-wrapper {
    background: transparent !important;
    position: relative;
    min-height: 100vh;
    padding-top: 50px;
    overflow-x: hidden;
}

/* VIP Arka Plan Efektleri */
.diamond-background {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.gold-gradient-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
    pointer-events: none;
}

/* VIP GRID */
.vip-sponsors-section {
    padding: 0 5% 120px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

/* VIP CARD - ULTRA PREMIUM */
.vip-card {
    background: rgba(15, 15, 15, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden; /* Shimmer için */
    min-height: 480px;
    width: 100%;
}

/* Shimmer (Işıltı) Efekti */
.vip-card::after {
    content: '';
    position: absolute;
    top: -100%; left: -100%;
    width: 300%; height: 300%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 55%
    );
    animation: shimmer 6s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translate(-30%, -30%); }
    20% { transform: translate(30%, 30%); }
    100% { transform: translate(30%, 30%); }
}

.vip-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.15);
}

.vip-card-logo {
    height: 100px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
    transition: transform 0.6s ease;
    z-index: 5;
}

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

/* Bonus Kutuları - Premium Dokunuş */
.vip-bonus-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    z-index: 5;
}

.vip-bonus-box-top {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1.5px solid #ffd700;
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 12px 5px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1), inset 0 0 10px rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.vip-bonus-box-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

/* Uçuşan Yıldızlar VIP Versiyon */
.vip-bonus-box-top::before, .vip-bonus-box-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 200%; height: 200%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 40% 60%, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(1px 1px at 70% 30%, #fff, transparent);
    background-size: 50% 50%;
    animation: stars-move 10s linear infinite;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

@keyframes stars-move {
    from { transform: translate(0, 0); }
    to { transform: translate(-50%, -50%); }
}

.vip-main-amount {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 5;
    position: relative;
}

.vip-bottom-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .vip-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 900px) {
    .vip-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 700px) {
    .vip-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 5px !important;
    }

    .vip-card {
        padding: 15px 5px !important;
        min-height: 240px !important;
        height: auto !important;
        gap: 12px !important;
        border-radius: 16px !important;
        justify-content: flex-start !important;
    }

    .vip-card-logo {
        height: 50px !important;
        margin-bottom: 2px !important;
    }

    .vip-bonus-container {
        gap: 8px !important;
    }

    .vip-bonus-box-top {
        font-size: 0.55rem !important;
        padding: 6px 2px !important;
        letter-spacing: 1px !important;
        border-radius: 8px !important;
    }

    .vip-bonus-box-main {
        padding: 10px 2px !important;
        border-radius: 10px !important;
        gap: 5px !important;
    }

    .vip-main-amount {
        font-size: 0.95rem !important;
    }

    .vip-bottom-text {
        font-size: 0.55rem !important;
        letter-spacing: 0px !important;
        opacity: 0.7 !important;
    }
}