/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Montserrat:wght@400;700&display=swap');

:root {
    --wfe-gold: #cfa144;
    --wfe-gold-light: #e6c575;
    --wfe-red: #8a1c1c;
    --wfe-dark: #0f0f0f;
    --wfe-flame: #ff5500;
}

.wfe-banner-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: var(--wfe-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    border-bottom: 4px solid var(--wfe-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wfe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Fire Effects */
.wfe-fire-side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
}

.wfe-fire-left {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 85, 0, 0.4) 0%, transparent 100%);
    animation: flicker 3s infinite alternate;
}

.wfe-fire-right {
    right: 0;
    background: linear-gradient(-90deg, rgba(255, 85, 0, 0.4) 0%, transparent 100%);
    animation: flicker 2.5s infinite alternate-reverse;
}

@keyframes flicker {
    0% {
        opacity: 0.4;
        transform: scaleX(1);
        box-shadow: 0 0 50px var(--wfe-flame) inset;
    }

    100% {
        opacity: 0.7;
        transform: scaleX(1.1);
        box-shadow: 0 0 80px var(--wfe-flame) inset;
    }
}

/* Content */
.wfe-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.wfe-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--wfe-gold-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.wfe-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 10px 0 30px 0;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(207, 161, 68, 0.3);
    background: linear-gradient(to bottom, #fff 40%, var(--wfe-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Countdown */
.wfe-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid rgba(207, 161, 68, 0.3);
    backdrop-filter: blur(5px);
}

.wfe-time-box {
    text-align: center;
}

.wfe-time-box span {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wfe-flame);
    text-shadow: 0 0 10px rgba(255, 85, 0, 0.4);
    display: block;
    line-height: 1;
}

.wfe-time-box small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #aaa;
}

.wfe-separator {
    font-size: 2rem;
    color: var(--wfe-gold);
    margin-top: -15px;
}

/* CTA */
.wfe-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to bottom, #b32d00, #8a1c1c);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: 1px solid #d44d2d;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(138, 28, 28, 0.6);
    transition: all 0.3s ease;
}

.wfe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 85, 0, 0.6);
    background: linear-gradient(to bottom, #d44d2d, #a82424);
    color: #fff;
}

.wfe-price {
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--wfe-gold-light);
}

/* FOMO Bar */
.wfe-fomo-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid var(--wfe-gold);
    z-index: 20;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wfe-fomo-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Marquee State */
#wfe-marquee {
    transform: translateY(0);
}

#wfe-marquee.hidden {
    transform: translateY(-100%);
}

.wfe-marquee-inner {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.wfe-marquee-inner span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Notification State */
#wfe-notification {
    transform: translateY(100%);
    /* Start below */
    background: rgba(40, 10, 10, 0.95);
    /* Slightly reddish background */
}

#wfe-notification.active {
    transform: translateY(0);
}

#wfe-notification-text {
    font-size: 0.95rem;
    color: var(--wfe-gold-light);
    font-weight: 600;
}

.wfe-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 12px;
    background: var(--wfe-gold);
    color: var(--wfe-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(207, 161, 68, 0.4);
    border: 1px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .wfe-title {
        font-size: 2.2rem;
    }

    .wfe-countdown {
        gap: 8px;
        padding: 10px;
    }

    .wfe-time-box span {
        font-size: 1.5rem;
    }

    .wfe-separator {
        font-size: 1.2rem;
        margin-top: -8px;
    }
}