body {
    background-color: #212121;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.language-select {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-select label {
    font-weight: 600;
    color: #fff;
}

.language-select select {
    padding: 6px 12px;
    border-radius: 10px;
    border: none;
    background-color: #1f1f1f;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    appearance: none; /* убираем стандартный стрелочный стиль */
}

.language-select select:hover {
    background-color: #2c2c2c;
}

.faq-item {
    background-color: #1b1b1b;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-item:hover {
    background-color: #333333;
}

.question {
    font-weight: bold;
}

.answer {
    margin-top: 10px;
    display: none;
    color: #e0e0e0;
}


/* Hero блок */
.hero {
    height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #ffffff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 0.5rem;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
}


/* Telegram Bots Section */
.bots-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bots-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bot-card {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.bot-card h3 {
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: #fff;
}

.bot-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #aaa;
    margin-bottom: 15px;
    white-space: pre-line; /* сохраняем переносы строк */
}

.bot-card a {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.bot-card a:hover {
    background-color: #2563eb;
}

/* FAQ container */
.container {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}
