/**
 * 游戏系统样式 - 简约线框风格
 */

:root {
    --game-primary: #d81b60;
    --game-surface: #ffffff;
    --game-border: #e0e0e0;
    --game-border-hover: #d81b60;
    --game-text-primary: #212121;
    --game-text-secondary: #757575;
    --game-text-muted: #9e9e9e;
    --game-success: #4caf50;
    --game-warning: #ff9800;
    --game-info: #2196f3;
    --game-radius: 8px;
    --game-spacing: 16px;
}

/* ===== 游戏入口按钮 ===== */
.game-entry-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--game-surface);
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    color: var(--game-text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.game-entry-btn:hover {
    border-color: var(--game-border-hover);
    color: var(--game-primary);
}

.game-entry-btn svg {
    width: 18px;
    height: 18px;
}

/* ===== 游戏页面内容 ===== */
#game-page-content {
    padding: var(--game-spacing);
}

/* ===== 标签页 ===== */
.game-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--game-border);
}

.game-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--md-on-surface-variant);
    transition: all 0.3s;
    margin-bottom: -2px;
}

.game-tab:hover {
    color: var(--md-primary);
}

.game-tab.active {
    color: var(--md-primary);
    border-bottom-color: var(--md-primary);
}

.game-tab-content {
    display: none;
}

.game-tab-content.active {
    display: block;
}

/* ===== 子标签页 ===== */
.game-sub-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--game-border);
    overflow-x: auto;
}

.game-sub-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 13px;
    color: var(--md-on-surface-variant);
    transition: all 0.3s;
    margin-bottom: -2px;
    white-space: nowrap;
}

.game-sub-tab:hover {
    color: var(--md-primary);
}

.game-sub-tab.active {
    color: var(--md-primary);
    border-bottom-color: var(--md-primary);
}

.game-sub-tab-content {
    display: none;
}

.game-sub-tab-content.active {
    display: block;
}

/* ===== 信息卡片 ===== */
.game-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--game-spacing);
    margin-bottom: var(--game-spacing);
}

@media (max-width: 480px) {
    .game-info-cards {
        grid-template-columns: 1fr;
    }
}

.game-info-card {
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: var(--game-spacing);
    transition: all 0.2s ease;
}

.game-info-card:hover {
    border-color: var(--game-border-hover);
}

.game-info-card-title {
    font-size: 12px;
    color: var(--game-text-secondary);
    margin-bottom: 8px;
}

.game-info-card-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--game-text-primary);
    margin-bottom: 8px;
}

.game-info-card-subtitle {
    font-size: 14px;
    color: var(--game-text-secondary);
}

/* ===== 进度条 ===== */
.game-progress-bar {
    width: 100%;
    height: 8px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.game-progress-fill {
    height: 100%;
    background: var(--game-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ===== 碎片网格 ===== */
.game-section {
    margin-bottom: 24px;
}

.game-section-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--game-text-primary);
    margin-bottom: 12px;
}

.game-fragments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

@media (max-width: 768px) {
    .game-fragments-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

.game-fragment-card {
    min-height: 120px;
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--game-surface);
    position: relative;
}

.game-fragment-card:hover {
    border-color: var(--game-border-hover);
    transform: translateY(-2px);
}

.game-fragment-card.empty {
    border-style: dashed;
    opacity: 0.5;
}

.game-fragment-card.can-synthesize {
    border-color: var(--game-warning);
    border-width: 2px;
    position: relative;
}

.game-fragment-synthesize {
    margin-top: 8px;
    padding: 4px 12px;
    border: 1px solid var(--game-warning);
    border-radius: 4px;
    background: var(--game-warning);
    color: white;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.game-fragment-synthesize:hover {
    background: #f57c00;
    border-color: #f57c00;
    transform: translateY(-1px);
}

.game-fragment-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.game-fragment-name {
    font-size: 12px;
    color: var(--game-text-primary);
    margin-bottom: 4px;
}

.game-fragment-count {
    font-size: 11px;
    color: var(--game-text-secondary);
}

/* ===== 道具列表 ===== */
.game-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-item-card {
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.game-item-card:hover {
    border-color: var(--game-border-hover);
}

.game-item-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--game-border);
    border-radius: 4px;
}

.game-item-info {
    flex: 1;
}

.game-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--game-text-primary);
    margin-bottom: 4px;
}

.game-item-count {
    font-size: 12px;
    color: var(--game-text-secondary);
}

.game-item-action {
    padding: 6px 16px;
    border: 1px solid var(--game-border);
    border-radius: 4px;
    background: transparent;
    color: var(--game-text-primary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.game-item-action:hover {
    border-color: var(--game-primary);
    color: var(--game-primary);
}

/* ===== 功法列表 ===== */
.game-techniques-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-technique-card {
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: 12px;
    transition: all 0.2s ease;
}

.game-technique-card.equipped {
    border-color: var(--game-primary);
    background: rgba(216, 27, 96, 0.05);
}

.game-technique-card:hover {
    border-color: var(--game-border-hover);
}

.game-technique-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.game-technique-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-technique-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--game-border);
    border-radius: 4px;
}

.game-technique-details {
    flex: 1;
}

.game-technique-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--game-text-primary);
    margin-bottom: 4px;
}

.game-technique-level {
    font-size: 12px;
    color: var(--game-text-secondary);
}

.game-technique-effect {
    font-size: 12px;
    color: var(--game-text-secondary);
    margin-top: 8px;
}

.game-technique-action {
    padding: 6px 16px;
    border: 1px solid var(--game-border);
    border-radius: 4px;
    background: transparent;
    color: var(--game-text-primary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.game-technique-action:hover {
    border-color: var(--game-primary);
    color: var(--game-primary);
}

.game-technique-action.equipped {
    border-color: var(--game-primary);
    color: var(--game-primary);
    background: rgba(216, 27, 96, 0.1);
}

/* ===== 奖励弹窗 ===== */
.game-reward-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--game-surface);
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: 24px;
    z-index: 2000;
    text-align: center;
    min-width: 280px;
    animation: popupIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes popupIn {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes levelUpShake {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-2deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    }
}

.game-reward-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--game-text-primary);
    margin-bottom: 16px;
}

.game-reward-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.game-reward-name {
    font-size: 16px;
    color: var(--game-text-primary);
    margin-bottom: 20px;
}

.game-reward-close {
    padding: 8px 24px;
    border: 1px solid var(--game-border);
    border-radius: 4px;
    background: transparent;
    color: var(--game-text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.game-reward-close:hover {
    border-color: var(--game-primary);
    color: var(--game-primary);
}

/* ===== 实时提示 ===== */
.game-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--game-surface);
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: 12px 16px;
    z-index: 1500;
    min-width: 200px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.game-notification.expiring {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideOutRight {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.game-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-notification-icon {
    font-size: 20px;
}

.game-notification-text {
    flex: 1;
    font-size: 14px;
    color: var(--game-text-primary);
}

/* ===== 空状态 ===== */
.game-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--game-text-secondary);
}

.game-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.game-empty-text {
    font-size: 14px;
}

/* ===== 加载状态 ===== */
.game-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--game-text-secondary);
}

.game-loading::after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: ".";
    }
    40% {
        content: "..";
    }
    60%, 100% {
        content: "...";
    }
}

/* ===== 签到系统 ===== */
.game-signin-calendar {
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: var(--game-spacing);
}

.game-signin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--game-spacing);
    padding-bottom: var(--game-spacing);
    border-bottom: 1px solid var(--game-border);
}

.game-signin-consecutive {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-signin-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.game-signin-weekday {
    text-align: center;
    font-size: 12px;
    color: var(--game-text-secondary);
    font-weight: 500;
    padding: 4px;
}

.game-signin-day {
    aspect-ratio: 1;
    border: 1px solid var(--game-border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
}

.game-signin-day:hover:not(.empty) {
    border-color: var(--game-border-hover);
    background: #fafafa;
}

.game-signin-day.empty {
    border: none;
    cursor: default;
}

.game-signin-day.today {
    border-color: var(--game-primary);
    background: #fff5f8;
}

.game-signin-day.signed {
    background: #e8f5e9;
    border-color: var(--game-success);
}

.game-signin-day.missed {
    opacity: 0.4;
}

.game-signin-day-number {
    font-size: 12px;
    color: var(--game-text-primary);
    font-weight: 500;
}

.game-signin-check {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
    color: var(--game-success);
    font-weight: bold;
}

/* ===== 任务系统 ===== */
.game-tasks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-task-card {
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: var(--game-spacing);
    transition: all 0.2s ease;
    position: relative;
}

.game-task-card:hover {
    border-color: var(--game-border-hover);
}

.game-task-card.completed {
    background: #f5f5f5;
    opacity: 0.8;
}

.game-task-card.easy {
    border-left: 3px solid var(--game-success);
}

.game-task-card.medium {
    border-left: 3px solid var(--game-warning);
}

.game-task-card.hard {
    border-left: 3px solid var(--game-primary);
}

.game-task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.game-task-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--game-text-primary);
}

.game-task-reward {
    font-size: 12px;
    color: var(--game-warning);
    font-weight: 500;
}

.game-task-desc {
    font-size: 12px;
    color: var(--game-text-secondary);
    margin-bottom: 12px;
}

.game-task-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-task-progress-text {
    font-size: 12px;
    color: var(--game-text-secondary);
    white-space: nowrap;
}

.game-task-completed {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    color: var(--game-success);
    font-weight: 500;
}

/* ===== 成就系统 ===== */
.game-achievement-group {
    margin-bottom: 24px;
}

.game-achievement-group-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--game-text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--game-border);
}

.game-achievements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-achievement-card {
    border: 1px solid var(--game-border);
    border-radius: var(--game-radius);
    padding: var(--game-spacing);
    display: flex;
    gap: 12px;
    transition: all 0.2s ease;
}

.game-achievement-card:hover {
    border-color: var(--game-border-hover);
}

.game-achievement-card.completed {
    background: #f5f5f5;
}

.game-achievement-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--game-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--game-text-secondary);
    flex-shrink: 0;
}

.game-achievement-card.completed .game-achievement-icon {
    border-color: var(--game-success);
    background: var(--game-success);
    color: white;
}

.game-achievement-content {
    flex: 1;
    min-width: 0;
}

.game-achievement-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--game-text-primary);
    margin-bottom: 4px;
}

.game-achievement-desc {
    font-size: 12px;
    color: var(--game-text-secondary);
    margin-bottom: 8px;
}

.game-achievement-reward {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.game-achievement-reward-exp {
    font-size: 12px;
    color: var(--game-warning);
    font-weight: 500;
}

.game-achievement-claimed {
    font-size: 11px;
    color: var(--game-text-muted);
}

.game-btn-small {
    padding: 4px 12px;
    font-size: 12px;
}

/* ===== 玄藏录样式 ===== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.collections-grid .collection-card {
    animation-delay: calc(var(--index, 0) * 0.05s);
}

.collection-card {
    background: var(--md-surface-container-low);
    border: 1px solid var(--game-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
    cursor: pointer;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--collection-color, var(--md-primary)), transparent);
    transition: height 0.3s;
}

.collection-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(var(--collection-color-rgb, 33, 150, 243), 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.collection-card:hover {
    border-color: var(--game-border-hover);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.collection-card:hover::before {
    height: 6px;
}

.collection-card:hover::after {
    opacity: 1;
}

.collection-icon {
    font-size: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.collection-card:hover .collection-icon {
    transform: scale(1.1) rotate(5deg);
}

.collection-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--md-on-surface);
    margin-bottom: 8px;
}

.collection-quality {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.collection-id {
    font-size: 11px;
    color: var(--md-on-surface-variant);
    font-family: monospace;
    margin-top: 8px;
    word-break: break-all;
}

.collection-obtained {
    font-size: 12px;
    color: var(--md-on-surface-variant);
    margin-top: 8px;
}

.collection-effect {
    font-size: 12px;
    color: var(--md-primary);
    margin-top: 6px;
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--md-surface-container), var(--md-surface-container-highest));
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(var(--md-primary-rgb, 33, 150, 243), 0.2);
    transition: all 0.3s;
}

.collection-card:hover .collection-effect {
    background: linear-gradient(135deg, rgba(var(--md-primary-rgb, 33, 150, 243), 0.1), rgba(var(--md-primary-rgb, 33, 150, 243), 0.2));
    border-color: var(--md-primary);
    transform: scale(1.05);
}

.collection-description {
    font-size: 12px;
    color: var(--md-on-surface-variant);
    margin-top: 8px;
    line-height: 1.4;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.collection-rarity {
    font-size: 11px;
    color: var(--md-on-surface-variant);
    margin-top: 4px;
}

/* 品质颜色 */
.quality-common { background: #9e9e9e; color: white; }
.quality-uncommon { background: #4caf50; color: white; }
.quality-rare { background: #2196f3; color: white; }
.quality-epic { background: #9c27b0; color: white; }
.quality-legendary { background: #ff9800; color: white; }
.quality-mythic { background: #f44336; color: white; }

/* 筛选和搜索栏 */
.collections-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-label {
    font-size: 14px;
    color: var(--md-on-surface-variant);
    white-space: nowrap;
}

.filter-select,
.search-input {
    padding: 8px 12px;
    border: 1px solid var(--game-border);
    border-radius: 8px;
    background: var(--md-surface-container-low);
    color: var(--md-on-surface);
    font-size: 14px;
    transition: all 0.3s;
}

.filter-select:hover,
.search-input:hover {
    border-color: var(--game-border-hover);
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: var(--md-primary);
    box-shadow: 0 0 0 2px rgba(var(--md-primary-rgb, 33, 150, 243), 0.2);
}

.search-input {
    flex: 1;
    min-width: 200px;
}

/* 详情弹窗 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--md-surface);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--game-border);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--md-on-surface);
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--md-on-surface-variant);
    padding: 4px;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--md-on-surface);
}

.modal-body {
    color: var(--md-on-surface);
}

.modal-info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--game-border);
}

.modal-info-label {
    font-weight: 600;
    color: var(--md-on-surface-variant);
    min-width: 100px;
}

.modal-info-value {
    flex: 1;
    color: var(--md-on-surface);
}

.modal-effect {
    background: var(--md-surface-container-low);
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
}

.modal-effect-title {
    font-weight: 600;
    color: var(--md-primary);
    margin-bottom: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

