* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1c20 0%, #0d0e10 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.content {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.3);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff88, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 179, 255, 0.3);
}

.tagline {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff88, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature span {
    display: block;
    color: #ffffff;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #0088cc, #00b3ff);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 136, 255, 0.3);
}

.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.4);
}

.telegram-button i {
    font-size: 1.4rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 300px;
    }
} 