/* body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    gap: 10px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
} */

h1 {
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 200, 255, 0.7);
    font-size: 2.5rem;
    letter-spacing: 2px;
}
@media (max-width: 480px) {
    body {
        gap: 5px;
    }

    h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}


/* Countdown Seconds CSS */
.second-timer-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.3);
    backdrop-filter: blur(10px);
    max-width: 100%;
    
}

.second-timer-display {
    font-size: 8rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 5px;
}

.second-timer-message {
    color: #ff5555;
    font-size: 2rem;
    margin-top: 30px;
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.7);
}

.second-timer-message.show {
    opacity: 1;
}

.second-timer-remaining {
    color: #aaa;
    margin-top: 20px;
    font-size: 1.2rem;
}

.second-timer-target-date {
    color: #00ffff;
    margin-top: 20px;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


/* Tablet & Small Screen */
@media (max-width: 768px) {
    .second-timer-container {
        padding: 20px;
    }

    .second-timer-display {
        font-size: 4rem;
        margin: 10px 0;
    }

    .second-timer-message {
        font-size: 1.2rem;
        margin-top: 15px;
    }

    .second-timer-remaining,
    .second-timer-target-date {
        font-size: 1.8rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .second-timer-container {
        padding: 15px;
    }

    .second-timer-display {
        font-size: 3rem;
        margin: 8px 0;
    }

    .second-timer-message {
        font-size: 1rem;
        margin-top: 10px;
    }

    .second-timer-remaining,
    .second-timer-target-date {
        font-size: 1.4rem;
    }
}