* {
    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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.soon-image {
    width: 800px;
    max-width: 90%;
    height: auto;
    max-height: 250px;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.soon-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.telegram-section {
    margin-top: 0.5rem;
}

.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-image {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(0, 136, 204, 0.6));
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
}

@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-image {
        width: 600px;
        max-width: 90%;
        max-height: 180px;
        margin-bottom: 1rem;
    }
    
    .telegram-image {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .soon-image {
        width: 450px;
        max-width: 95%;
        max-height: 150px;
        margin-bottom: 0.8rem;
    }
    
    .telegram-image {
        width: 70px;
        height: 70px;
    }
} 