/* ==========================================
СЕКЦИЯ ПРЕДЗАКАЗА И CTA (PREORDER BANNER)
========================================== */
.preorder-section {
    padding-top: var(--space-2);
    padding-bottom: var(--space-12);
    background-color: var(--color-bg);
    position: relative;
    z-index: 2;
}

.preorder-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(25, 28, 34, 0.9) 0%, rgba(14, 16, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4.5rem) var(--space-6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.preorder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.preorder-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.preorder-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
    filter: brightness(0.9) contrast(1.1);
}

.preorder-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(14, 16, 20, 0.6) 0%, rgba(11, 12, 16, 0.92) 100%);
    pointer-events: none;
}

.preorder-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-inline: auto;
}

.preorder-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: var(--space-4);
}

/* Фирменная вытяжка заголовка блока */
.preorder-title {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--color-heading);
    margin-top: 0 !important;
    margin-bottom: var(--space-3);
    display: inline-block !important;
    transform: scaleY(1.14);
    transform-origin: center bottom;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.preorder-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-inline: auto;
    margin-bottom: var(--space-6);
    max-width: 580px;
}

.preorder-action {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-preorder-gold {
    background: var(--gradient-gold);
    color: #121008 !important;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base), transform 0.2s ease, box-shadow var(--transition-base);
    box-shadow: 0 4px 18px rgba(229, 168, 35, 0.25);
}

.btn-preorder-gold:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 168, 35, 0.4);
}

@media (max-width: 860px) {
    .preorder-card {
        padding: var(--space-6) var(--space-4);
    }
    .preorder-title {
        transform: scaleY(1.08);
    }
    .btn-preorder-gold {
        width: 100%;
        max-width: 280px;
    }
}