* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.soon-text h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.telegram-section {
    margin-top: 2rem;
}

.telegram-icon {
    display: inline-block;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.telegram-icon:hover {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 0 30px rgba(0, 136, 204, 0.8));
}

.telegram-icon svg {
    filter: drop-shadow(0 0 20px rgba(0, 136, 204, 0.6));
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .soon-text h1 {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    
    .telegram-icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .soon-text h1 {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }
    
    .telegram-icon svg {
        width: 50px;
        height: 50px;
    }
} 