/* ======================================================= */
/* БАЗОВЫЕ СТИЛИ ПРОЕКТА */
/* ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block; /* Изменено с block на inline-block */
}

/* УНИВЕРСАЛЬНЫЕ СТИЛИ ДЛЯ ИЗОБРАЖЕНИЙ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fallback для несуществующих картинок */
img:not([src]), img[src=""], img[src*="placeholder"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img:not([src])::after {
    content: "🖼️ Зображення завантажується...";
    color: white;
    font-size: 1.2em;
    text-align: center;
}

/* ======================================================= */
/* СТИЛИ ГЛАВНОЙ СТРАНИЦЫ: "ДУБОВЫЙ СТОЛ ИССЛЕДОВАТЕЛЯ" */
/* ======================================================= */

.desk-page-body {
    /* Фон-Текстура: Имитация темного дубового стола */
    background-color: #382721; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/wood_texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #f0f0f0;
    min-height: 100vh;
    perspective: 1000px;
    overflow-x: hidden; /* Только горизонтальный overflow */
    overflow-y: auto; /* Вертикальный скролл разрешен */
}

/* HEADER И FOOTER - ФИКСАЦИЯ */
.main-header, .main-footer {
    width: 100%;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; /* Не сжимаются */
}

.main-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer {
    margin-top: auto; /* КЛЮЧЕВОЕ: прижимает футер к низу */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-title { 
    color: #FFD700; 
    font-size: 1.8em;
    font-weight: bold;
}

.desk-greeting { 
    text-align: center; 
    font-style: italic; 
    font-size: 1.2em; 
    padding: 30px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher a { 
    color: #f0f0f0; 
    opacity: 0.6; 
    transition: opacity 0.3s, transform 0.2s;
    padding: 5px 10px;
    border-radius: 3px;
}

.language-switcher a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.language-switcher a.active { 
    opacity: 1; 
    font-weight: bold;
    background: rgba(255, 215, 0, 0.2);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* КОНТЕЙНЕР ДЛЯ КАРТ И ИХ 3D-ЭФФЕКТОВ */
.photo-card-container {
    position: relative;
    min-height: 70vh; 
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding-bottom: 100px; /* Отступ снизу для опций */
}

/* КАРТОЧКА ФОТОГРАФИИ (КУИНДЖИ/ЛЮДОВИК) */
.photo-key-container {
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: rotate(var(--rotation));
    transform-origin: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform; /* Оптимизация анимации */
}

.photo-card {
    position: relative;
    width: 300px; 
    height: 200px;
    border: 10px solid #f0f0f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: #222; /* Фон на случай ошибки загрузки */
}

/* КЛЮЧЕВОЙ СТИЛЬ ДЛЯ ПРЕВЬЮ КАРТОЧЕК! */
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ВОТ ОНО! */
    object-position: center;
    transition: transform 0.3s;
}

/* ЭФФЕКТ ЗАГАДКИ */
.riddle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.3s;
    pointer-events: none; /* Не блокирует клики */
}

.riddle-text {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    color: #FFD700;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ПАНЕЛЬ ВЫБОРА (ОПЦИИ) */
.options-panel {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    opacity: 0;
    z-index: 50;
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.4s ease;
    background: rgba(18, 18, 18, 0.95);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    pointer-events: none;
}

/* БАЗОВИ СТИЛІ КНОПКИ */
.option-button {
    display: block;
    padding: 14px 24px;
    margin: 10px 0;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.option-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.option-button:hover::before {
    width: 300px;
    height: 300px;
}

.option-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.option-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* КНОПКА "ЧИТАТИ" - Світлий пергамент */
.read-option { 
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6d3 50%, #fffdd0 100%);
    color: #3d2817;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    border-color: #d4af37;
}

.read-option:hover {
    background: linear-gradient(135deg, #fffef5 0%, #fdf6e3 50%, #f5e6d3 100%);
    border-color: #ffda44;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* КНОПКА "ДИВИТИСЯ" - Золотистий оксамит */
.video-option { 
    background: linear-gradient(135deg, #d4af37 0%, #c9a528 25%, #f4d03f 50%, #c9a528 75%, #aa8c2c 100%);
    color: #1a1209;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.6);
    border-color: #f4d03f;
}

.video-option:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 25%, #ffda44 50%, #d4af37 75%, #c9a528 100%);
    border-color: #ffda44;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.6);
}

/* ІНТЕРАКТИВНІСТЬ: ЕФЕКТ "КЛЮЧ" */
.photo-key-container:hover {
    z-index: 100;
    transform: rotate(0deg) scale(1.15) translateZ(50px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.photo-key-container:hover .card-image {
    transform: scale(1.05);
}

.photo-key-container:hover .riddle-overlay {
    opacity: 1; 
}

.photo-key-container:hover .options-panel {
    bottom: -110px;
    opacity: 1;
    pointer-events: all;
}

/* ======================================================= */
/* АДАПТИВНІСТЬ ДЛЯ МОБІЛЬНИХ */
/* ======================================================= */

@media (max-width: 768px) {
    .options-panel {
        position: relative;
        bottom: auto;
        margin-top: 15px;
        opacity: 1;
        pointer-events: all;
        width: 100%;
        max-width: 280px;
    }
    
    .option-button {
        font-size: 0.95em;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .option-button {
        font-size: 0.9em;
        padding: 10px 16px;
        margin: 8px 0;
    }
}
/* ======================================================= */
/* СТИЛИ СТАРТОВОЙ СТРАНИЦЫ (INDEX.HTML / LANDING) */
/* ======================================================= */

.landing-page-body {
    background-color: #f0f0f0;
    color: #121212;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.welcome-header { 
    padding-top: 5vh; 
    font-size: 1.2em; 
    font-weight: 300;
    max-width: 800px;
}

.welcome-ua, .welcome-en {
    margin: 10px 0;
    line-height: 1.8;
}

.manifest-content { 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
    width: 100%; 
    position: relative; 
    padding: 40px 20px;
}

/* КОД 404 И ПЕРЕЧЕРКИВАНИЕ */
.error-manifest { 
    position: absolute; 
    opacity: 0.08;
    user-select: none; 
    z-index: 1;
    pointer-events: none;
}

.error-code { 
    font-size: clamp(8em, 15vw, 15em); /* Адаптивный размер */
    font-weight: 900; 
    color: #FF0000; 
    margin: 0; 
    position: relative;
    line-height: 1;
}

.error-code::after { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: -5%; 
    width: 110%; 
    height: 15px; 
    background-color: #121212; 
    transform: rotate(-8deg); 
    opacity: 0.8;
}

/* ЦИТАТА И ВЫБОР ЯЗЫКА */
.quote-switcher { 
    position: relative; 
    z-index: 5; 
    display: flex; 
    flex-direction: column; 
    gap: 40px;
    max-width: 600px;
}

.quote-link {
    font-size: clamp(1.5em, 4vw, 2.2em);
    font-weight: bold;
    color: #121212;
    transition: all 0.3s;
    padding: 15px 20px;
    border-radius: 8px;
}

.quote-link:hover { 
    color: #ff0000; 
    background: rgba(255, 0, 0, 0.05);
    transform: scale(1.05);
}

.manifest-footer { 
    padding: 5vh 20px;
    opacity: 0.7;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.heart-symbol-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.heart-icon {
    font-size: 1.5em;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.heart-text {
    font-size: 1.2em;
    font-weight: 300;
}

/* ======================================================= */
/* СТИЛИ СТРАНИЦ КОНТЕНТА (ОБЩИЕ) */
/* ======================================================= */
.content-page-body {
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* ОБЩИЙ HEADER */
.content-header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
    flex-shrink: 0;
}

.page-title { 
    font-size: clamp(1.2em, 3vw, 1.8em);
    margin: 0;
}

.back-link { 
    color: #aaa; 
    transition: color 0.3s, transform 0.2s;
    padding: 5px 10px;
}

.back-link:hover { 
    color: #fff;
    transform: translateX(-5px);
}

/* КОНТЕЙНЕР КОНТЕНТА */
.content-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
    flex-grow: 1;
}

.text-block { 
    position: relative;
    margin-bottom: 40px;
}

.section-title { 
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 1.5em;
}

.center-text {
    text-align: center;
}

/* СТИЛИ ПОРТРЕТА */
.portrait {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 0 20px 25px;
    float: right;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.portrait.left-float {
    float: left;
    margin: 0 30px 20px 0;
}

/* Очистка float */
.text-block::after {
    content: "";
    display: table;
    clear: both;
}

/* ======================================================= */
/* УНИКАЛЬНЫЙ СТИЛЬ КУИНДЖИ: ЗАДРАПИРОВАННЫЕ ОКНА */
/* ======================================================= */

.kuindzhi-bg {
    background-color: #000000;
    color: #f0f0f0;
}

.spotlight-quote {
    font-size: 1.2em;
    font-style: italic;
    color: #ffd700;
    border-left: 4px solid #ffd700;
    padding-left: 20px;
    margin: 30px 0;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 5px;
}

/* СТИЛИ КАРТИНЫ В ЦЕНТРЕ */
.art-media-spotlight {
    text-align: center;
    padding: 60px 0;
    margin: 40px 0;
}

.spotlight-frame {
    display: inline-block;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 60px rgba(255, 255, 100, 0.6), 
                0 0 20px rgba(255, 255, 255, 0.4),
                0 10px 40px rgba(0, 0, 0, 0.8);
    border: 8px solid #fff;
    overflow: hidden;
    margin: 30px auto;
    background: #000;
}

.spotlight-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* МУЗЫКА И ВИДЕО */
.music-player {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
}

.music-player h3 {
    margin-bottom: 15px;
}

.music-player audio {
    width: 100%;
    margin-top: 15px;
}


/* СТИЛЬ ДЛЯ ВІДЕО */
.final-video-section video {
    width: 100%;
    max-width: 900px; /* Збільшено з 400px */
    height: auto; /* Автоматична висота для збереження пропорцій */
    display: block;
    margin: 30px auto; /* Центруємо */
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* АДАПТИВНІСТЬ ДЛЯ ВІДЕО */
@media (max-width: 1024px) {
    .final-video-section video {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .final-video-section video {
        max-width: 100%;
        border-width: 3px;
    }
    
    .final-video-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .final-video-section video {
        border-radius: 5px;
    }
}
/* Стилізуємо стандартний ornate-text-box для теми Куїнджі */
.kuindzhi-bg .ornate-text-box {
    /* Фон: зробимо його трохи прозорим, щоб проступав чорний фон */
    background: rgba(255, 255, 255, 0.05); /* Дуже темний, ледь помітний відтінок */
    /* Текст: золотистий, як Місяць на картині */
    color: #ffd700; /* Gold */
    /* Рамка: тонка золотиста лінія */
    border: 1px solid #c9a00f; /* Темніше золото */
    /* Тінь: ледь помітна */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* М'яке золотисте світіння */
}
/* ======================================================= */
/* УНИКАЛЬНЫЙ СТИЛЬ ЛЮДОВИКА XIV: КОРОЛЕВСКИЙ ПОРТРЕТ */
/* ======================================================= */

.louis-bg {
    background-color: #3d051f;
    color: #f0e68c;
    font-family: 'Georgia', serif;
}

.louis-bg .page-title, 
.louis-bg h2,
.louis-bg h3 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid #f0e68c;
    padding-bottom: 10px;
}

.ornate-text-box {
    border: 5px double #f0e68c;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(240, 230, 140, 0.5);
    margin: 40px 0;
    border-radius: 5px;
}

.historical-document {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    background-color: #f5f5dc;
    color: #121212;
    padding: 25px;
    border: 2px solid #999;
    margin: 30px 0;
    white-space: pre-wrap;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

/* FOOTER ДЛЯ СТРАНИЦ КОНТЕНТА */
.social-footer {
    margin-top: auto;
    padding: 30px 5%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======================================================= */
/* АДАПТИВНОСТЬ (RESPONSIVE) */
/* ======================================================= */

/* Планшеты */
@media (max-width: 1024px) {
    .photo-card {
        width: 250px;
        height: 167px;
    }
    
    .portrait {
        max-width: 250px;
    }
    
    .project-title {
        font-size: 1.4em;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .main-header, .content-header {
        flex-direction: column;
        text-align: center;
    }
    
    .project-title {
        font-size: 1.2em;
    }
    
    .photo-card-container {
        min-height: 50vh;
    }
    
    .photo-card {
        width: 200px;
        height: 133px;
    }
    
    /* Отключаем 3D на мобилках */
    .desk-page-body {
        perspective: none;
    }
    
    .photo-key-container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 20px auto;
        display: block;
    }
    
    .photo-key-container:hover {
        transform: scale(1.05) !important;
    }
    
    .options-panel {
        position: relative;
        bottom: auto;
        margin-top: 15px;
        opacity: 1;
        pointer-events: all;
    }
    
    .riddle-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
    }
    
    /* Портреты на мобилках */
    .portrait, .portrait.left-float {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .content-container {
        padding: 0 3%;
    }
    
    .ornate-text-box {
        padding: 20px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .photo-card {
        width: 90%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3/2;
    }
    
    .desk-greeting {
        font-size: 1em;
    }
    
    .riddle-text {
        font-size: 1.1em;
    }
    
    .option-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}

/* ======================================================= */
/* УЛУЧШЕНИЯ ПРОИЗВОДИТЕЛЬНОСТИ */
/* ======================================================= */

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Оптимизация анимаций */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Загрузка шрифтов */
@font-face {
    font-family: 'Arial';
    font-display: swap;

}

/* Стили для ЛОГОТИПА (1.png) */
.project-logo {
    max-height: 80px; /* Ограничиваем высоту, чтобы не был слишком огромным */
    width: auto;
    object-fit: contain;
}

/* Переключатель языков (остается без изменений, но убедимся, что он центрирован) */
.language-switcher {
    font-size: 1.1em;
    font-weight: bold;
    /* ... остальные стили для ссылок ... */
}


/* ======================================================= */
/* УНИКАЛЬНЫЙ СТИЛЬ КАМАРГО: РОКОКО И БАЛЕТ */
/* ======================================================= */

.camargo-bg {
    background-color: #FFFDD0; /* цвет слоновой кости, насыщенныя бежевый фон */
    color: #333333;
    font-family: 'Georgia', serif; 
}

/* Заголовки, чтобы были заметны на светлом фоне */
.camargo-bg .page-title, 
.camargo-bg h2,
.camargo-bg h3 {
    color: #4a148c; /* Глубокий фиолетовый */
    text-shadow: none;
    border-bottom: 2px solid #ce93d8; /* Бледно-пурпурная линия */
    padding-bottom: 10px;
}

/* Стили для рамки-цитаты (Вольтер) */
.camargo-bg .spotlight-quote {
    color: #4a148c;
    border-left: 4px solid #ce93d8; 
    background: rgba(74, 20, 140, 0.05); /* Очень легкий фиолетовый налет */
    font-style: normal; /* Сбрасываем курсив, чтобы цитата была чистой */
}

/* Стили для списка (Плитки/Скандал) */
.camargo-bg .gossip-list li::before {
    color: #ce93d8; /* Делаем маркеры под цвет темы */
}

/* Стили для рамки картины */
.camargo-bg .spotlight-frame {
    box-shadow: 0 0 40px rgba(74, 20, 140, 0.3), /* Фиолетовое свечение */
                0 0 15px rgba(255, 255, 255, 0.8),
                0 10px 30px rgba(0, 0, 0, 0.5);
    border: 8px solid #ffffff;
}

/* Стили для музыкального плеера */
.camargo-bg .music-player {
    background: rgba(74, 20, 140, 0.03); /* Почти прозрачный */
    color: #121212;
    border: 1px solid #ce93d8;
}

/* Стили для обрамленного текста (ornate-text-box) */
.camargo-bg .ornate-text-box {
    border: 5px double #ce93d8; /* Двойная рамка под цвет Рококо */
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(206, 147, 216, 0.7);
}


 /* СТИЛЬ ДЛЯ ВІДЕО */
.final-video-section video {
    width: 100%;
    max-width: 900px; /* Збільшено з 400px */
    height: auto; /* Автоматична висота для збереження пропорцій */
    display: block;
    margin: 30px auto; /* Центруємо */
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* АДАПТИВНІСТЬ ДЛЯ ВІДЕО */
@media (max-width: 1024px) {
    .final-video-section video {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .final-video-section video {
        max-width: 100%;
        border-width: 3px;
    }

    .final-video-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .final-video-section video {
        border-radius: 5px;
    }
} 







