@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: url('background.webp') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    max-width: 180px;
    width: auto;
    height: auto;
    animation: fadeIn 1s ease-in;
}



.launch-info {
    position: absolute;
    top: 30px;
    right: 30px;
    animation: fadeIn 1.2s ease-in;
}



.countdown {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.time-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.time-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.time-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
    font-weight: 400;
}

footer {
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    font-size: 0.85rem;
    opacity: 0.88;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    font-weight: 300;
    letter-spacing: 0.3px;
}

footer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 140px;
        top: 20px;
        left: 20px;
    }
    
    .launch-info {
        top: 20px;
        right: 20px;
    }
    
    .time-box {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .time-value {
        font-size: 1.1rem;
    }
    
    .time-label {
        font-size: 0.55rem;
    }
    
    .countdown {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 110px;
        top: 15px;
        left: 15px;
    }
    
    .launch-info {
        top: 15px;
        right: 15px;
    }
    
    .time-box {
        min-width: 45px;
        padding: 6px 8px;
    }
    
    .time-value {
        font-size: 1rem;
    }
    
    .time-label {
        font-size: 0.5rem;
    }
    
    .countdown {
        gap: 5px;
    }
    
    footer {
        font-size: 0.75rem;
        padding: 15px;
    }
}
