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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.header {
    margin-bottom: 40px;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    color: #b8b8b8;
    font-weight: 400;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section {
    width: 100%;
}

.image-container {
    margin-bottom: 30px;
    position: relative;
}

.hero-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.6),
        0 25px 50px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.4),
            0 20px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 70px rgba(255, 215, 0, 0.6),
            0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-item {
    color: #ffffff;
}

.stat-item strong {
    color: #ffd700;
    font-size: 1.4rem;
}

.stat-divider {
    margin: 0 15px;
    color: #ffd700;
    font-size: 1.5rem;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
}

.btn {
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.3rem;
}

.btn-x {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-x:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #005999);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #005999, #0088cc);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #25d366);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.description {
    font-size: 1.1rem;
    color: #b8b8b8;
    font-weight: 400;
    line-height: 1.5;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.floating-icon-5 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon-6 {
    top: 80%;
    right: 20%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 220px;
        height: 220px;
    }
    
    .stats {
        font-size: 1rem;
    }
    
    .stat-item strong {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        width: 180px;
        height: 180px;
    }
    
    .stats {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

