:root {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --bg-card: #ffffff;
    --bg-sidebar: #f1f3f5;
    --bg-header: #ffffff;
    --bg-hover: #e9ecef;
    --bg-badge: #e7f0ff;
    --text-primary: #1a1a2e;
    --text-secondary: #495057;
    --text-tertiary: #6c757d;
    --text-link: #4a3fdb;
    --text-link-hover: #362db5;
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --accent: #5c4dff;
    --accent-light: #e8e5ff;
    --accent-glow: rgba(92, 77, 255, 0.15);
    --green: #2ecc71;
    --green-bg: #e6f9ef;
    --orange: #f39c12;
    --orange-bg: #fef9e7;
    --red: #e74c3c;
    --red-bg: #fdedec;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --header-height: 64px;
}

/* ===== Тёмная тема ===== */
[data-theme="dark"] {
    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #25253d;
    --bg-card: #1a1a2e;
    --bg-sidebar: #151529;
    --bg-header: #151529e6;
    --bg-hover: #25253d;
    --bg-badge: #1f1f3a;
    --text-primary: #e2e2f0;
    --text-secondary: #b0b0c8;
    --text-tertiary: #8a8aa8;
    --text-link: #8b7cff;
    --text-link-hover: #ada0ff;
    --border-color: #2a2a45;
    --border-light: #22223a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --accent: #8b7cff;
    --accent-light: #1f1b4a;
    --accent-glow: rgba(139, 124, 255, 0.2);
    --green: #3dd68c;
    --green-bg: #0a2a1a;
    --orange: #f5b940;
    --orange-bg: #2a1f0a;
    --red: #f0655a;
    --red-bg: #2a0f0f;
}

/* ===== Сброс и базовые стили ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition), color var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Шапка ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    transition: background var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #5c4dff, #7b6ef0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--accent-glow);
}

/* Поиск */
.header__search {
    flex: 1;
    max-width: 480px;
    position: relative;
    margin: 0 auto;
}

.header__search input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: all var(--transition);
    outline: none;
}

.header__search input:focus {
    border-color: var(--accent);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.header__search input::placeholder {
    color: var(--text-tertiary);
}

.header__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
    width: 20px;
    height: 20px;
}

/* Кнопки шапки */
.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--text-link-hover);
    box-shadow: 0 4px 14px var(--accent-glow);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-color);
}

.btn--ghost:hover {
    background: var(--bg-hover);
    border-color: var(--text-tertiary);
}

.btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.btn--icon:hover {
    background: var(--bg-hover);
    border-color: var(--border-color);
}

.btn--icon.theme-toggle {
    font-size: 1.3rem;
}

/* Гамбургер */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 110;
}

.hamburger span {
    display: block;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: all var(--transition);
    width: 100%;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Навигация ===== */
.nav-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition);
}

.nav-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-bar__inner::-webkit-scrollbar {
    height: 0;
}

.nav-bar a {
    display: inline-block;
    padding: 11px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all var(--transition);
    font-weight: 500;
}

.nav-bar a:hover,
.nav-bar a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--accent-light);
    border-radius: 8px 8px 0 0;
}

/* ===== Мобильное меню ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 99;
    padding: 80px 24px 40px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 14px 18px;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: var(--bg-hover);
}

.mobile-menu__divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* ===== Основной контент ===== */
.main-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    flex: 1;
    width: 100%;
}

.content {
    min-width: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== Hero-секция ===== */
.hero {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--accent-glow);
    pointer-events: none;
    filter: blur(40px);
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    position: relative;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
}

.hero__stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===== Карточки статей ===== */
.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card__image {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
    flex-shrink: 0;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-badge);
    color: var(--accent);
    width: fit-content;
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.3;
}

.card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.card__meta {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* ===== Категории ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.category-tile {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition);
    font-weight: 550;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.category-tile:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-tile__icon {
    font-size: 2rem;
    margin-bottom: 6px;
    display: block;
}

/* ===== Сайдбар ===== */
.sidebar-card {
    background: var(--bg-sidebar);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--transition);
}

.sidebar-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
}

.sidebar-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-card ul li a {
    color: var(--text-link);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.sidebar-card ul li a:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
}

.tag:hover {
    background: var(--accent);
    color: #fff;
}

/* ===== Футер ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 32px 20px;
    margin-top: auto;
    transition: all var(--transition);
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer ul li a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer ul li a:hover {
    color: var(--text-link);
}

.footer__bottom {
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* ===== Хлебные крошки (для статьи) ===== */
.breadcrumbs {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--text-link);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-tertiary);
}

/* ===== Инфобокс (для статьи) ===== */
.infobox {
    background: var(--bg-sidebar);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-size: 0.85rem;
}

.infobox__title {
    background: var(--accent);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}

.infobox__image {
    width: 100%;
    height: 160px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.infobox__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infobox__row {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 14px;
    gap: 8px;
}

.infobox__row:last-child {
    border-bottom: none;
}

.infobox__label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 80px;
    flex-shrink: 0;
}

.infobox__value {
    color: var(--text-primary);
}

/* ===== Содержание статьи ===== */
.toc {
    background: var(--bg-sidebar);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.toc h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.toc ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
}

.toc ol li a {
    color: var(--text-link);
    text-decoration: none;
}

.toc ol li a:hover {
    text-decoration: underline;
}

/* ===== Контент статьи ===== */
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 650;
    margin: 20px 0 8px;
}

.article-content p {
    margin-bottom: 14px;
    color: var(--text-primary);
    line-height: 1.75;
}

.article-content ul,
.article-content ol {
    margin: 10px 0 16px 24px;
    color: var(--text-primary);
}

.article-content li {
    margin-bottom: 4px;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: var(--bg-sidebar);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.article-content code {
    background: var(--bg-tertiary);
    padding: 2px 7px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.88em;
}

.article-content pre {
    background: var(--bg-tertiary);
    padding: 16px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 14px 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== Адаптивность ===== */
@media (max-width: 1024px) {
    .main-wrapper {
        grid-template-columns: 1fr 260px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 14px 32px;
    }

    .sidebar {
        order: 2;
    }

    .content {
        order: 1;
    }

    .hamburger {
        display: flex;
    }

    .nav-bar {
        display: none;
    }

    .header__search {
        max-width: 100%;
    }

    .header__actions .btn--ghost {
        display: none;
    }

    .hero {
        padding: 24px 18px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .header__logo span {
        display: none;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        gap: 14px;
    }

    .hero__stat-value {
        font-size: 1.3rem;
    }

    .header {
        padding: 0 10px;
        gap: 8px;
    }

    .header__search input {
        padding: 9px 12px 9px 36px;
        font-size: 0.85rem;
    }

    .header__search-icon {
        left: 10px;
        width: 17px;
        height: 17px;
    }

    .btn--primary {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .btn--icon {
        width: 36px;
        height: 36px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-tile {
        padding: 12px 8px;
        font-size: 0.78rem;
    }

    .category-tile__icon {
        font-size: 1.5rem;
    }
}

/* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal__content {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.modal__body {
    padding: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal__footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal__btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.modal__btn--primary {
    background: var(--accent-color, #5c3d99);
    color: white;
}

.modal__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.modal__btn--secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.modal__btn--secondary:hover {
    background: var(--bg-hover);
}

/* Mobile optimization */
@media (max-width: 640px) {
    .modal__content {
        width: 95%;
        border-radius: 16px;
    }

    .modal__header {
        padding: 16px;
    }

    .modal__title {
        font-size: 1.1rem;
    }

    .modal__body {
        padding: 16px;
    }

    .modal__footer {
        padding: 16px;
        flex-direction: column-reverse;
    }

    .modal__btn {
        width: 100%;
    }
}