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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
    text-align: center;
}

.quote-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin: 0 0 12px 0;
    line-height: 1.6;
    font-weight: 300;
}

.quote-author {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}

.hero {
    margin-bottom: 50px;
}

.robot-emoji {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 20px;
    color: #718096;
    font-weight: 400;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    padding: 30px 20px;
    background: #f7fafc;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    font-size: 14px;
    color: #718096;
}

.cta {
    margin-bottom: 40px;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0088cc;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.telegram-button:hover {
    background: #006ba3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.telegram-button svg {
    width: 24px;
    height: 24px;
}

.footer {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.footer p {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 640px) {
    .container {
        padding: 40px 24px;
    }

    .quote-section {
        padding: 24px 20px;
    }

    .quote {
        font-size: 1.15rem;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .robot-emoji {
        font-size: 60px;
    }
}

