* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif; 
}

body {
    background: linear-gradient(90deg, #000428 0%, #004e92 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
}

.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.countdown-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.select-wrapper {
    width: 100%;
    max-width: 800px;
}

.select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 50px;
    padding: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
    line-height: 30px;
    font-size: 1.1rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: white transparent transparent transparent;
}

.select2-dropdown {
    background-color: #004e92;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px;
    border-radius: 4px;
}

.select2-container--default .select2-results__option {
    padding: 8px;
    color: white;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #003972;
    color: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: #f0f0f0;
    opacity: 80%;
}

.countdown {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    flex: 1;
    margin: 0 0.2rem;
    min-width: 65px;
    max-width: 155px;
    text-align: center;
}

.countdown-number {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@media (max-width: 1200px) {
    .countdown-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .countdown-number {
        font-size: 3rem;
    }
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .countdown-number {
        font-size: 2rem;
    }
    .countdown-label {
        font-size: 0.6rem;
    }
}

.button {
    margin: 10px 0;
    padding: 10px 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    margin: 2% auto;
}

.close-btn {
    position: absolute;
    right: 0;
    top: -40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    text-align: center;
    padding: 1rem;
    width: 100%;
    margin-bottom: 0;
}

.footer-small {
    font-size: 0.5rem;
    opacity: 0.7;
}

.footer-copyright {
    font-size: 1rem;
}

.countdown::-webkit-scrollbar {
    display: none;
}

.countdown {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


#links {
	text-decoration: none;
	opacity: 80%;
	color: #333;
}

#links:hover {
    text-decoration: underline;
}

.noscript-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #000428 0%, #004e92 100%);
    color: white;
    text-align: center;
}
.noscript-message {
    font-size: 24px;
    font-weight: bold;
}
.noscript-description {
    font-size: 18px;
}

.countdown {
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.days {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

.days.visible {
    opacity: 1;
    display: block;
}

.countdown.hidden {
    opacity: 0;
    display: none;
}

.days, .countdown {
    user-select: none;
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none; 
}