

/* Coming Soon Section */
.coming-soon {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: url('TecktabLOgo-4x.png') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgb(0, 0, 0);
    animation: fadeIn 1.5s ease-in-out;
}

.content h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 2s ease-in-out;
}

.content p {
    font-size: 1.8rem;
    margin-top: 15px;
    animation: fadeIn 3s ease-in-out;
}

/* Countdown Timer */
.countdown {
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: bold;
}

/* Fade-in Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.4rem;
    }

    .countdown {
        font-size: 1.2rem;
    }
}
