* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(234, 179, 8, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1419 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(234, 179, 8, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 1;
}

.content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(234, 179, 8, 0.1) 100%),
        rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.icon-wrapper {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.maintenance-icon {
    width: 180px;
    height: 180px;
    color: #22c55e;
    filter: 
        drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
    animation: glow 2s ease-in-out infinite alternate;
}

.logo-image {
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

@keyframes glow {
    from {
        filter: 
            drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 20px rgba(34, 197, 94, 0.5))
            brightness(1);
    }
    to {
        filter: 
            drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 30px rgba(34, 197, 94, 0.8))
            drop-shadow(0 0 40px rgba(234, 179, 8, 0.3))
            brightness(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    background: linear-gradient(135deg, #22c55e 0%, #eab308 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(34, 197, 94, 0.8), 0 0 70px rgba(234, 179, 8, 0.3);
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.description {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.85;
    animation: fadeInUp 1s ease-out 0.4s both;
}


.contact {
    margin: 3rem 0 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.email {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.email:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.telegram-link {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.telegram-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(234, 179, 8, 0.1) 100%),
        rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.telegram-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.telegram-icon:hover {
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.4) 0%, rgba(234, 179, 8, 0.3) 100%),
        rgba(15, 23, 42, 0.9);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(34, 197, 94, 0.4);
    border-color: rgba(34, 197, 94, 0.6);
}


.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: 
        radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, rgba(234, 179, 8, 0.1) 50%, transparent 70%);
    animation: float-circle 20s infinite ease-in-out;
    box-shadow: 
        0 0 50px rgba(34, 197, 94, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(100px, -50px);
    }
    75% {
        transform: translate(-50px, 100px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    
    .content {
        padding: 3rem 1.5rem;
    }
    
    .maintenance-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
}
