:root {
    --muze-primary: #2b2118;
    /* Koyu Kahve */
    --muze-secondary: #e6dbc6;
    /* Bej */
    --muze-text-dark: #2b2118;
    --muze-text-light: #ffffff;
    --muze-border: #eeeeee;
}

.muze-sergiler-container {
    font-family: 'Playfair Display', serif;
    /* Seri fontu için */
    max-width: 1200px;
    margin: 40px auto;
    color: var(--muze-text-dark);
    background: transparent;
    /* Arka plan rengi kaldırıldı */
    padding: 0;
}

.muze-header-year {
    font-size: 8rem;
    font-weight: 900;
    color: #e0e0e0;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.muze-tabs {
    border-bottom: none;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.muze-tab-btn {
    background: var(--muze-secondary);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--muze-text-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.muze-tab-btn.active {
    background: var(--muze-primary);
    color: var(--muze-text-light);
}

.muze-tab-btn.active::after {
    display: none;
}

.muze-year-slider-wrapper {
    background: #eeeeee;
    padding: 10px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.muze-year-slider {
    display: flex;
    gap: 0;
}

.muze-year-item {
    padding: 20px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--muze-gray);
    transition: all 0.3s;
    border-right: 1px solid #ddd;
    min-width: 80px;
    text-align: center;
}

.muze-year-item.active {
    background: var(--muze-primary);
    color: #fff;
}

.muze-ex-flex {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    align-items: flex-start;
}

.muze-ex-image {
    flex: 0 0 450px;
}

.muze-ex-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.muze-ex-details {
    flex: 1;
}

.muze-ex-date {
    display: inline-block;
    padding: 8px 15px;
    background: var(--muze-primary);
    color: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.muze-ex-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 20px 0;
}

.muze-ex-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.muze-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

@media (max-width: 992px) {
    .muze-ex-flex {
        flex-direction: column;
    }

    .muze-ex-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .muze-header-year {
        font-size: 4rem;
    }
}