* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    height: 100vh;
}

#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.logo {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.logo-icon-inner {
    transform: rotate(-45deg);
    font-weight: bold;
    font-size: 1.5rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

.countdown {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 3rem;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    border-radius: 2px;
    transition: width 0.5s ease-out;
}

.status {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.status-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status-dot.working {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffcc00;
    animation: pulse 1.5s infinite;
}

.status-dot.pending {
    background: #ff5555;
    box-shadow: 0 0 10px #ff5555;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.contact {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact a {
    color: #00d2ff;
    text-decoration: none;
    transition: all 0.3s;
}

.contact a:hover {
    color: #3a7bd5;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }
}