* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Force white background regardless of color scheme */
html {
    background-color: white !important;
    color-scheme: light only;
}

body {
    background-color: white !important;
    color-scheme: light only;
    forced-color-adjust: none;
    -webkit-forced-color-adjust: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Force light mode */
@media (prefers-color-scheme: dark) {
    html, body {
        background-color: white !important;
        color-scheme: light only;
    }
}
.container {
    text-align: center;
}

.logo img {
    max-width: 600px;
    height: auto;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease-out forwards;
}



.progress-bar {
    width: 80%;
    max-width: 600px;
    height: 30px;
    border: 3px solid #0047BA;
    border-radius: 15px;
    margin: 40px auto;
    overflow: hidden;
    display: flex;
    opacity: 0;
    transform: scaleX(0.3);
    animation: scaleIn 0.8s ease-out 0.5s forwards;
}

.coming-soon h1 {
    color: #E6007E;
    font-family: 'VAG Rounded', 'Bauhaus 93', 'Arial Rounded MT Bold', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 30px;
    opacity: 0;
    animation: 
        fadeInUp 1s ease-out 1s forwards,
        pulse 2s ease-in-out 2s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0.3);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Add a subtle background animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(230, 0, 126, 0.05), rgba(0, 71, 186, 0.05));
    z-index: -1;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.progress {
    display: flex;
    width: 100%;
    height: 100%;
}

.progress::before {
    content: '';
    width: 40px;
    height: 100%;
    background: #E6007E;
    transform: skewX(-45deg);
    animation: loadingBars 3s linear infinite;
    box-shadow: 50px 0 #E6007E, 100px 0 #E6007E, 150px 0 #E6007E,
                200px 0 #E6007E, 250px 0 #E6007E, 300px 0 #E6007E,
                350px 0 #E6007E, 400px 0 #E6007E;
}

@keyframes loadingBars {
    0% {
        transform: translateX(-400px) skewX(-45deg);
    }
    100% {
        transform: translateX(400px) skewX(-45deg);
    }
}

.coming-soon h1 {
    color: #E6007E;
    font-family: 'VAG Rounded', 'Bauhaus 93', 'Arial Rounded MT Bold', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        max-width: 300px;
    }
    
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .progress-bar {
        width: 90%;
    }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: #E6007E;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #0047BA;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add to responsive section */
@media (max-width: 768px) {
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-item .label {
        font-size: 0.7rem;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: transparent;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
}

.footer p {
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer {
        padding: 12px;
    }
    
    .footer p {
        font-size: 0.75rem;
    }
}
.footer-credits {
    font-size: 0.85rem;
    color: #666;
}

.footer-credits a {
    color: #E6007E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #0047BA;
}

/* Add to responsive section */
@media (max-width: 768px) {
    .footer {
        padding: 15px;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
    
    .footer-credits {
        font-size: 0.75rem;
    }
}

.dots {
    color: #0b4fa4;
}