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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-image: url('img/fon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content {
    max-width: 850px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.message-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 50px 45px;
    margin-bottom: 45px;
}

.coming-soon {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.description {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 35px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: opacity 0.25s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-item {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.footer {
    padding-top: 25px;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Адаптивность */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    .message-box {
        padding: 40px 30px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 25px 15px;
    }
    
    .message-box {
        padding: 35px 25px;
    }
    
    .contact-link,
    .contact-item {
        font-size: 0.9rem;
    }
}

@media (max-height: 700px) {
    .content {
        transform: scale(0.92);
    }
    
    .message-box {
        padding: 35px 30px;
        margin-bottom: 30px;
    }
    
    .subtitle {
        margin-bottom: 35px;
    }
}
