*,
h4 {
    font-family: "Tektur", sans-serif; /* Retro-futuristic font */
}

.hero {
    background-image: url(back.jpg);
    background-size: cover;
    height: 100dvh;

    text-align: center;
}

@media (max-width: 480px) {
    /* Smartphones */
    .futuristic-text {
        padding: 0.2rem !important;
    }

    .hero {
        background-image: url(back.jpg);
        background-size: cover;
        height: auto;

        text-align: center;
    }
}

/* Base styling for the futuristic text */
.futuristic-text {
    font-family: "Tektur", sans-serif; /* Retro-futuristic font */
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #ff00ff; /* Neon pink base color */

    letter-spacing: 4px; /* Spacing for a retro feel */
    padding: 1rem;
    display: inline-block;
    background: linear-gradient(
        180deg,
        rgba(29, 49, 79, 1) 0%,
        rgba(45, 197, 255, 1) 25%,
        rgba(255, 255, 255, 1) 50%,
        rgba(0, 0, 0, 1) 51%,
        rgba(45, 197, 255, 1) 75%,
        rgba(255, 255, 255, 1) 100%
    );
    -webkit-background-clip: text; /* Clip text to the background */
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
}

.futuristic-text-subtle {
    font-family: "Tektur", sans-serif; /* Retro-futuristic font */
    font-weight: 900;
    position: relative;
    color: #ff00ff; /* Neon pink base color */

    letter-spacing: 4px; /* Spacing for a retro feel */
    padding: 20px;
    display: inline-block;
    background: linear-gradient(
        180deg,
        rgba(29, 49, 79, 1) 0%,
        rgba(45, 197, 255, 1) 25%,
        rgba(255, 255, 255, 1) 50%,
        rgba(45, 197, 255, 1) 75%,
        rgba(255, 255, 255, 1) 100%
    );
    -webkit-background-clip: text; /* Clip text to the background */
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
}

.futuristic-text-container {
    /* animation: glow 1.5s infinite alternate; */
    display: flex;
    flex-direction: column;
    filter: drop-shadow(3px 3px 0px #000000) /* Solid black shadow for depth */
        drop-shadow(-3px -3px 0px #ff00ff) /* Neon cyan offset */
        drop-shadow(0 0 10px rgba(45, 197, 255, 1)) /* Inner glow */
        drop-shadow(0 0 20px #ff00ff) /* Outer glow */
        drop-shadow(0 0 40px rgba(45, 197, 255, 1)); /* Larger glow */
}

@keyframes glow {
    0% {
        filter: drop-shadow(3px 3px 0px #000000)
            /* Solid black shadow for depth */
            drop-shadow(-3px -3px 0px #ff00ff) /* Neon cyan offset */
            drop-shadow(0 0 10px rgba(45, 197, 255, 1)) /* Inner glow */
            drop-shadow(0 0 20px #ff00ff) /* Outer glow */
            drop-shadow(0 0 40px rgba(45, 197, 255, 1)) /* Larger glow */
            drop-shadow(0 0 80px #ff00ff); /* Extreme glow */
    }
    100% {
        filter: drop-shadow(3px 3px 0px #000000)
            /* Solid black shadow for depth */
            drop-shadow(-3px -3px 0px #ff00ff) /* Neon cyan offset */
            drop-shadow(0 0 10px rgba(45, 197, 255, 1)) /* Inner glow */
            drop-shadow(0 0 40px #ff00ff) /* Outer glow */
            drop-shadow(0 0 60px rgba(45, 197, 255, 1)) /* Larger glow */
            drop-shadow(0 0 100px #ff00ff); /* Extreme glow */
    }
}

h1 {
    font-size: clamp(45px, 6vw, 80px); /* Min: 36px, Ideal: 6vw, Max: 80px */
    line-height: clamp(45px, 5vw, 40px); /* Adjust proportionally */
}

h2 {
    font-size: clamp(40px, 5vw, 60px); /* Min: 28px, Ideal: 5vw, Max: 60px */
    line-height: clamp(36px, 4vw, 60px);
    font-style: italic;
}

.countdown-container {
    padding: 1rem;
    background: linear-gradient(#58087eaa, #970197aa);
    margin-top: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border-top: 2px solid #58087eee;
    border-bottom: 2px solid #970197ee;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.pattern {
    background-image: url(tv.webp);
    background-size: 500px 500px;
    background-blend-mode: color-dodge;
    background-color: #280438;
    animation: static 60s infinite linear;
}

@keyframes static {
    0% {
        background-position-y: 0px;
        background-position-x: 0px;
    }
    50% {
        background-position-y: 250px;
        background-position-x: 50px;
    }
    100% {
        background-position-y: 500px;
        background-position-x: 0px;
    }
}

button {
    padding: 10px 20px;
    border-radius: 99px;
    background-color: rgba(45, 197, 255, 1);
    border: none;
    box-shadow: 0px 0px 0px rgb(34, 152, 199);
    transition: all 100ms;
}
button:hover {
    background-color: rgb(76, 203, 253);
    box-shadow: 0px 4px 0px rgb(34, 152, 199);
    transition: all 100ms;
}

.note {
    background: linear-gradient(0deg, #59087e34, #850cbd80);
    backdrop-filter: blur(5px);
    padding: 10px;
    font-style: italic;
    border: 1px solid #850cbd80;
    border-radius: 5px;
}

.display-res-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

@media (max-width: 480px) {
    /* Smartphones */
    .display-res-4 {
        font-size: 2rem;
        font-weight: 300;
        line-height: 1.2;
    }
}
