* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #121212, #1a1a1a);
    color: #e0e0e0;
    text-align: center;
    padding: 40px 20px;
    min-height: 100vh;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Анимированный фон с частицами */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Эффект параллакса */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #a0d879;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #e06666;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #aaa;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    border-left: 4px solid #e06666;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 1.6rem;
    margin-right: 12px;
    color: #e06666;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #e06666, #c41e3a);
    color: white;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(224, 102, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 102, 102, 0.6);
    background: linear-gradient(45deg, #c41e3a, #9d1a21);
}

.btn-container {
    margin: 30px 0;
}

.footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-proof {
    font-size: 0.95rem;
    color: #666;
    margin: 15px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.animated-title {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.animated-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e06666, transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Анимация пульсации для Telegram-виджета */
.telegram-widget-container {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Эффект появления при загрузке */
.container > * {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация плавающих иконок */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating:nth-child(1) { animation-delay: 0s; }
.floating:nth-child(2) { animation-delay: 0.7s; }
.floating:nth-child(3) { animation-delay: 1.4s; }
.floating:nth-child(4) { animation-delay: 2.1s; }