* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff0000, #800080, #0000ff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
}

.status {
    opacity: 1;
    transform: none;
    color: #ffcc00;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.coming-soon {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 50px;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
    animation: fadeIn 1s ease forwards 3s;
    transition: all 0.3s ease;
}

.coming-soon:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    opacity: 1;
}

/* Плавающие частицы */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 15s ease-in-out infinite;
}

.progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 320px;
    margin: 2rem auto;
}

.progress-side {
    font-size: 0.9rem;
    color: #aaa;
    width: 30px;
    text-align: center;
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background-color: #333;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff0000, #800080);
    border-radius: 3px;
    transition: width 0.8s ease-in-out;
}

.progress-final {
    font-size: 1rem;
    font-weight: bold;
    color: #ff0033;
    text-align: center;
    margin-top: 0.5rem;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    70% {
        width: 65%;
    }

    100% {
        width: 85%;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .progress-container {
        width: 250px;
    }

    .coming-soon {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .progress-container {
        width: 200px;
    }
}