html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #050505;
    color: #ffffff;
}

/* Custom Neon Green Glow */
.glow-text {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.glow-box {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.glow-box:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.pulse-badge {
    animation: pulse-border 2s infinite;
}

/* ANIMATIONS FOR SPLASH SCREEN */
.mask-vertical {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.ad-line {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    filter: blur(8px);
}

.ad-line.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.ad-line.past {
    opacity: 0.15;
    transform: scale(0.85) translateY(0);
    filter: blur(2px);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Checkbox Animation */
.check-anim {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blink-call {
    animation: blinkGlow 1.5s infinite;
}

@keyframes blinkGlow {
    0% {
        box-shadow: 0 0 5px #10b981;
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px #10b981, 0 0 40px #10b981;
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 5px #10b981;
        transform: scale(1);
    }
}

#animated-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}

#animated-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) scale(0.8) rotate(10deg);

    /* 🔥 Gradient Color */
    background: linear-gradient(90deg, #10b981, #3b82f6, #a855f7, #ec4899);
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow */
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* SHOW ANIMATION */
#animated-title span.show {
    animation: flySmooth 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards,
        gradientMove 3s linear infinite;
}

/* ✈️ Fly Animation */
@keyframes flySmooth {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.8) rotate(10deg);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05) rotate(-2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
    }
}

/* 🌈 Moving Gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* 🔥 RESPONSIVE FIX */
@media (max-width: 768px) {
    #animated-title {
        font-size: 26px;
        /* mobile size */
        letter-spacing: 2px;
    }
}

@media (min-width: 769px) {
    #animated-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
}

.text-danger {
    color: #ff4d4f;
    /* bright red */
    font-size: 12px;
    margin-top: 4px;
    display: block;
}