body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background-color: #050505;
    background-image:
        radial-gradient(circle at 14% 20%, rgba(59, 130, 246, 0.08), transparent 24%),
        radial-gradient(circle at 84% 22%, rgba(168, 85, 247, 0.08), transparent 24%);
    background-attachment: fixed;
}

.glass-panel {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-grid {
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.offer-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.offer-banner {
    aspect-ratio: 1200 / 600;
    max-width: 1200px;
    margin-inline: auto;
}

.offer-banner > img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.offer-banner > :not(img) {
    position: relative;
    z-index: 2;
}
