body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #730441;
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.countdown-section {
    height: 100vh;
    background: linear-gradient(135deg, #730441 0%, #730441 100%);
    color: white;
    text-align: center;
    padding: 20px;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.logo {
    /*filter: brightness(0) invert(1);*/
    max-width: 60%;
}

.countdown-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.countdown-section p {
    font-size: 1.1rem;
    /*margin-bottom: 40px;*/
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.time-box .time {
    font-size: 2rem;
    display: block;
}

.modal-dialog {
    max-width: 500px;
}

.cool-modal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: none;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.modal-header {
    border-bottom: none;
    position: relative;
    padding: 0;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close:hover {
    opacity: 1;
}

.modal-header .modal-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.modal-body {
    padding: 30px 20px;
    color: #fff;
}

.form-control, .btn {
    height: auto;
    font-size: 1rem;
    border-radius: 8px;
}

.form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    transition: border 0.3s, background 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border-color: #80bdff;
    background: rgba(255, 255, 255, 0.3);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
.logo {
    max-width: 25%;
}

.countdown-section {
    padding: 15px;
}

.time-box {
    min-width: 60px;
    padding: 10px 15px;
}

.modal-dialog {
    max-width: 90%;
}

.cool-modal {
    padding: 15px;
}

.form-control, .btn {
    font-size: 1rem;
    padding: 10px;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .countdown-section h1 {
        font-size: 2rem;
    }

    .countdown-section p {
        font-size: 1rem;
    }

    .time-box {
        min-width: 50px;
        padding: 10px;
    }

    .time-box .time {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 60%;
    }

    .modal-dialog {
        max-width: 95%;
    }
}

/* Media Queries for Extra Small Devices */
@media (max-width: 576px) {
    .countdown-section h1 {
        font-size: 1.5rem;
    }

    .countdown-section p {
        font-size: 0.9rem;
    }

    .time-box {
        min-width: 40px;
        padding: 8px;
    }

    .time-box .time {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 60%;
    }

    .modal-content {
        padding: 10px;
    }

    .form-control, .btn {
        font-size: 0.9rem;
    }
}




/* Apply white color to placeholders for input and textarea elements */
::placeholder {
    color: white !important;
    opacity: 1; /* Ensure full opacity for the color */
}

/* Apply vendor prefixes for compatibility with older browsers */
::-webkit-input-placeholder {
    color: white !important;
}

::-moz-placeholder {
    color: white !important;
}

:-ms-input-placeholder {
    color: white !important;
}

:-moz-placeholder {
    color: white !important;
}
