/* --- Общие стили контента --- */
.main-content {
    padding-top: 100px;
    padding-left: 7px;
    padding-right: 7px;
    max-width: 1200px;
    margin: 0 auto;
    color: #e5e5e5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Hero Section --- */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(30, 30, 30, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 30px;
}

.hero-cta-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    background: #4cc2ff;
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(76, 194, 255, 0.4);
}

/* --- Статистика --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4cc2ff;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* --- Новости --- */
.news-section h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.5rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s, transform 0.2s;
}

.news-item:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-2px);
}

.news-date {
    min-width: 80px;
    text-align: center;
    font-weight: bold;
    color: #4cc2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 194, 255, 0.1);
    border-radius: 8px;
    height: fit-content;
    font-size: 0.9rem;
}

.news-content h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.1rem;
}

.news-content p {
    margin: 0;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.4;
}