/* Modern Episodes Grid & Cards */
.guncel-bolumler-section {
    margin-bottom: 60px;
}

.guncel-bolumler-list {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding-top: 20px;
    animation: fadeIn 0.4s ease-out;
}

.guncel-bolumler-list.active {
    display: grid;
}

.guncel-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border);
    margin-bottom: 10px;
}

.tab-group {
    display: flex;
    gap: 30px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 -4px 10px rgba(255, 0, 51, 0.4);
}

.trend-rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.guncel-bolum-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.guncel-bolum-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-lg);
}

.guncel-bolum-card img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    transition: var(--transition);
}

.guncel-bolum-card:hover img {
    transform: scale(1.05);
}

.guncel-bolum-info {
    flex: 1;
}

.guncel-bolum-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.guncel-bolum-desc {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.bolum-date {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bolum-date::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

/* Badges */
.status-badge-overlap {
    position: absolute;
    top: -10px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.status-badge-overlap.new {
    background: #00c853;
}
.status-badge-overlap.season {
    background: #2979ff;
}
.status-badge-overlap.final {
    background: var(--primary);
}
.status-badge-overlap.popular {
    background: #ffab00;
}
.status-badge-overlap.translating {
    background: #aa00ff;
}

.altyazi-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .guncel-bolumler-list {
        grid-template-columns: 1fr;
    }

    .guncel-bolum-card img {
        width: 80px;
        height: 80px;
    }
}