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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    position: relative;
    color: #2d3e2d;
}

/* Градиентный фон */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7e9 0%, #e8f0e0 50%, #d4e8d4 100%);
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%);
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(120, 140, 120, 0.2);
}

/* Изображение цветка */
.flower-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
}

.flower-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(90, 120, 90, 0.3);
    border: 5px solid white;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.flower-image:hover {
    transform: scale(1.05);
}

.flower-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(150, 200, 150, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Текст */
.title {
    font-size: 3.5rem;
    color: #2d5e2d;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #5a7e5a;
    font-style: italic;
    margin-bottom: 30px;
    border-bottom: 1px solid #c0d6c0;
    padding-bottom: 20px;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #3d553d;
    font-size: 1.1rem;
}

/* Карточки преимуществ */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(90, 120, 90, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #4d7e4d;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #2d4d2d;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #5a755a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Кнопка входа */
.action-section {
    margin-top: 30px;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4d7e4d, #2d5e2d);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(77, 126, 77, 0.3);
    border: 2px solid transparent;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(77, 126, 77, 0.4);
    background: linear-gradient(135deg, #5d8e5d, #3d6e3d);
}

.login-btn i {
    font-size: 1.2rem;
}

.register-link {
    margin-top: 20px;
    color: #5a755a;
}

.register-link a {
    color: #2d5e2d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #2d5e2d;
}

.register-link a:hover {
    color: #1d4e1d;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .flower-container {
        width: 200px;
        height: 200px;
    }

    .login-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.9rem;
    }
}
