/* ==============================================
   PREMIUM PAGE - Yılbaşı Kampanyası v2
   Kompakt Tek Sayfa Tasarım
   ============================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* ===== ANA WRAPPER ===== */
.premium-page-wrapper {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0505 30%, #0a0a0a 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* Kırmızı Glow Efekti */
.premium-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== ÜST BANNER ===== */
.premium-top-banner {
    background: linear-gradient(90deg, #5c0a0a 0%, #8B0000 30%, #DC143C 50%, #8B0000 70%, #5c0a0a 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.banner-title {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

/* Pulsing Animasyon */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
        transform: scale(1.02);
    }
}

.banner-sale-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.banner-join-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.banner-join-btn:hover {
    background: #333;
    color: #FFD700;
}

/* Geri Sayım */
.banner-countdown {
    display: flex;
    gap: 4px;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.4);
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 42px;
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.countdown-label {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-top: 2px;
}

.countdown-separator {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

/* ===== ANA İÇERİK ===== */
.premium-main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px 20px;
    position: relative;
    z-index: 1;
}

/* ===== HERO BAŞLIK ===== */
.premium-hero-section {
    text-align: center;
    margin-bottom: 30px;
}

.premium-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.premium-hero-title span {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== 3 SÜTUNLU LAYOUT ===== */
.premium-content-grid {
    display: grid;
    grid-template-columns: 1fr 750px 1fr;
    gap: 20px;
    align-items: flex-end;
    min-height: 600px;
}

/* Sol ve Sağ Görsel Alanları */
.premium-left-image,
.premium-right-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.premium-left-image img,
.premium-right-image img {
    height: 600px !important;
    min-height: 600px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(220, 20, 60, 0.3));
}

/* Orta kartı görsellerin üstüne çıkar */
.premium-center-card {
    position: relative;
    z-index: 2;
}

/* ===== ORTA KART ===== */
.premium-center-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -1px 0 rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

/* Kart İçi 2 Sütun Layout */
.card-inner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    margin-bottom: 20px;
}

/* Sol Taraf - Paketler */
.card-left-section {
    display: flex;
    flex-direction: column;
}

.sale-title-section {
    margin-bottom: 20px;
}

.sale-title-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.sale-title-section h2 span {
    color: #DC143C;
}

.sale-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.sale-subtitle span {
    color: #FFD700;
    font-weight: 600;
}

/* Fiyat Paketleri */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    border-color: rgba(220, 20, 60, 0.5);
    background: rgba(220, 20, 60, 0.05);
}

.pricing-option.selected {
    border-color: #DC143C;
    background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, rgba(139,0,0,0.1) 100%);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

.best-choice-badge {
    position: absolute;
    top: -10px;
    left: 12px;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-duration {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.pricing-discount {
    font-size: 11px;
    font-weight: 700;
    color: #00E676;
}

.pricing-right {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.original-price {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
}

.current-price {
    display: flex;
    align-items: flex-start;
    color: #fff;
}

.currency {
    font-size: 16px;
    font-weight: 600;
    margin-right: 1px;
}

.amount {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.decimals {
    font-size: 14px;
    font-weight: 600;
}

.period {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-left: 2px;
    align-self: flex-end;
    margin-bottom: 4px;
}

/* Sağ Taraf - Avantajlar */
.card-right-section {
    display: flex;
    flex-direction: column;
}

.premium-benefits h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    position: relative;
}

.benefit-item.has-badge {
    color: rgba(255,255,255,0.85);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.benefit-icon svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

/* ===== ALT BÖLÜM ===== */
.card-bottom-section {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: auto;
}

/* Güvence Bilgileri */
.guarantee-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.guarantee-item svg {
    width: 14px;
    height: 14px;
    fill: #00C853;
    flex-shrink: 0;
}

/* Ödeme Butonu */
.payment-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pay-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-pay-card span {
    color: #fff !important;
    opacity: 1 !important;
}

.btn-pay-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    color: #fff !important;
}

.btn-pay-card:hover span {
    color: #fff !important;
}

.payment-icons {
    height: 24px;
}

.payment-icons img {
    height: 100%;
    width: auto;
    border-radius: 4px;
}

.total-payment-info {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: right;
    min-width: 120px;
}

.total-payment-info span {
    color: #FFD700;
    font-weight: 600;
    display: block;
    font-size: 14px;
}

/* ===== ALT GÜVENCE BÖLÜMÜ ===== */
.bottom-guarantees {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 25px;
    margin-top: 20px;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-box-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.guarantee-box-icon svg {
    width: 22px;
    height: 22px;
    fill: rgba(255,255,255,0.7);
}

.guarantee-box-text {
    display: flex;
    flex-direction: column;
}

.guarantee-box-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.guarantee-box-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .premium-content-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .premium-left-image,
    .premium-right-image {
        display: none;
    }
    
    .premium-center-card {
        max-width: 600px;
    }

@media (max-width: 650px) {
    .premium-top-banner {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .banner-title {
        font-size: 22px;
    }
    
    .banner-sale-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .banner-join-btn {
        display: none;
    }
    
    .countdown-item {
        padding: 5px 8px;
        min-width: 36px;
    }
    
    .countdown-number {
        font-size: 15px;
    }
    
    .countdown-label {
        font-size: 8px;
    }
    
    .premium-main-content {
        padding: 20px 15px;
    }
    
    .premium-hero-title {
        font-size: 24px;
    }
    
    .premium-hero-subtitle {
        font-size: 13px;
    }
    
    .premium-center-card {
        padding: 20px 18px;
    }
    
    .card-inner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-right-section {
        order: -1;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .premium-benefits h3 {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 12px;
    }
    
    .sale-title-section h2 {
        font-size: 20px;
    }
    
    .pricing-option {
        padding: 12px 14px;
    }
    
    .amount {
        font-size: 24px;
    }
    
    .payment-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-pay-card {
        width: 100%;
    }
    
    .total-payment-info {
        text-align: center;
    }
    
    .guarantee-row {
        justify-content: center;
    }
    
    .bottom-guarantees {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 400px) {
    .banner-title {
        font-size: 18px;
    }
    
    .banner-sale-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .countdown-item {
        min-width: 32px;
        padding: 4px 6px;
    }
    
    .countdown-number {
        font-size: 13px;
    }
    
    .premium-hero-title {
        font-size: 20px;
    }
}