.home-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #1b1f26;
    border-radius: 12px;
    min-height: calc(100vh - 2rem);
}

.hero-section {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--g-start) 0%, var(--g-mid) 50%, var(--g-end) 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid var(--bg-3);
}

.cta-text {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    color: #9CA3AF;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.features-list li::before {
    content: "✓";
    color: var(--brand);
    font-weight: bold;
    font-size: 0.75rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--bg-2);
    color: #D1D5DB;
    border: 1px solid var(--bg-3);
}

.btn-secondary:hover {
    background: var(--bg-3);
    color: white;
}

.home-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--bg-3);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #F9FAFB;
    margin: 0;
    transition: transform 0.3s ease;
}

.section-title i {
    color: var(--brand);
}

.section-title-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.section-title-link:hover {
    color: var(--brand);
}

.section-title .fa-arrow-right {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    color: var(--brand);
}

.section-title-link:hover .fa-arrow-right {
    opacity: 1;
    color: var(--brand-2);
}

.section-link {
    color: var(--brand);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.section-link:hover {
    color: var(--brand-2);
}

.section-link i {
    font-size: 0.75rem;
}

/* Используем существующие классы card-list и card-item */
.featured-lecturer {
    background: linear-gradient(135deg, #7c2d12 0%, #431407 100%) !important;
    border-color: #f97316 !important;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.3) !important;
    position: relative;
}

.featured-lecturer .card-icon {
    background: #f97316 !important;
    color: white !important;
}

.featured-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: #ffd700;
    font-size: 1rem;
}

/* Стили для специальных иконок */
.list-icon-favorite {
    background: rgba(255, 215, 0, 0.1) !important;
    color: #ffd700 !important;
}

.list-icon-history {
    background: rgba(234, 88, 12, 0.1) !important;
    color: var(--brand) !important;
}

.lecture-order-icon {
    background: var(--bg-3) !important;
    color: #F9FAFB !important;
    font-weight: 600 !important;
}

/* Компактная версия карточек для списков */
.compact-card-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--g-start) 0%, var(--g-mid) 60%, var(--g-end) 100%);
    border: 1px solid var(--bg-3);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.compact-card-item:hover {
    background: linear-gradient(135deg, var(--g-start) 0%, var(--g-mid) 40%, var(--g-end) 100%);
    border-color: #4a5568;
}

.compact-card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-3);
    border-radius: 0.175rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    overflow: hidden;
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 600;
}

.compact-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.1rem;
}

.compact-card-content {
    flex: 1;
    min-width: 0;
}

.compact-card-title {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #F9FAFB;
    line-height: 1.25;
}

.compact-card-meta {
    color: #9CA3AF;
    font-size: 0.75rem;
    line-height: 1.25;
}

/* Стили для индикатора "сейчас слушают" */
.live-indicator {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.live-indicator i {
    animation: pulse 2s infinite;
}

.languages-info,
.language-info {
    color: #6B7280;
    font-size: 0.75rem;
    font-style: italic;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .home-container {
        margin: 0;
        padding: 0.75rem;
        border-radius: 0;
        min-height: 100vh;
    }
    
    .hero-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        border-radius: 0;
    }
    
    .cta-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.375rem;
        text-align: left;
    }
    
    .features-list li {
        font-size: 0.8125rem;
        justify-content: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .home-sections {
        gap: 1.5rem;
    }
    
    .section {
        margin-bottom: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.125rem;
    }
    
    .section-title .fa-arrow-right {
        margin-left: 0.375rem;
        font-size: 0.675rem;
    }
    
    .card-item {
        padding: 0.75rem;
        border-radius: 0;
    }
    
    .card-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 0.875rem;
    }
    
    .card-title {
        font-size: 0.875rem;
    }
    
    .card-meta {
        font-size: 0.75rem;
    }
    
    .compact-card-item {
        padding: 0.625rem;
        border-radius: 0;
        margin-bottom: 0.375rem;
    }
    
    .compact-card-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 0.875rem;
    }
    
    .compact-card-title {
        font-size: 0.875rem;
    }
    
    .compact-card-meta {
        font-size: 0.75rem;
    }
    
    .featured-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.875rem;
    }

    .languages-info,
    .language-info {
        font-size: 0.7rem;
    }
}
