/* General Styling */
body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #001f3f, #0073e6);
    color: white;
}

/* Fireworks Container */
.fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Fireworks Styling */
.fireworks div {
    position: absolute;
    border-radius: 50%;
    animation: explode 1s ease-out forwards, fadeOut 1s ease-out forwards;
    opacity: 0;
}

/* Container Styling */
.container {
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 1;
    animation: pulse 3s infinite;
}

/* Banner Styling */
.welcome-message {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #ccb325; /* Gold */
    animation: fadeIn 2s ease-in-out;
    text-shadow: 0 0 10px rgba(255, 223, 0, 0.8), 0 0 20px rgba(255, 223, 0, 0.6);
}

/* Animated Text */
.animated-text {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #ffffff;
    opacity: 0;
    animation: slideIn 3s ease-in-out forwards, colorShift 5s infinite alternate;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes colorShift {
    from { color: #ff5733; }
    to { color: #33d1ff; }
}

@keyframes explode {
    0% { width: 5px; height: 5px; opacity: 1; }
    100% { width: 100px; height: 100px; opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.7); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-message {
        font-size: 1.8rem;
    }

    .animated-text {
        font-size: 1.2rem;
    }
}
