/* 模仿图片中的iOS样式 - 添加深色模式支持 */
:root {
    /* 浅色模式变量 */
    --ios-blue: #007aff;
    --ios-red: #ff3b30;
    --ios-green: #34c759;
    --ios-gray: #8e8e93;
    --ios-light-gray: #f2f2f7;
    --ios-dark-gray: #1c1c1e;
    --ios-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* 主题颜色变量 */
    --background-color: #f2f2f7;
    --card-background: white;
    --text-color: #000;
    --text-secondary: #8e8e93;
    --border-color: #f2f2f2;
    --segmented-bg: #e9e9ea;
    --active-segment-bg: white;
    --copy-button-bg: #1c1c1e;
    --copy-button-text: white;
    --modal-backdrop: rgba(0, 0, 0, 0.7);
    --toast-bg: rgba(0, 0, 0, 0.7);
    --toast-color: white;
}

/* 深色模式 - 系统自动切换 */
@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #000;
        --card-background: #1c1c1e;
        --text-color: #fff;
        --text-secondary: #98989d;
        --border-color: #2c2c2e;
        --segmented-bg: #2c2c2e;
        --active-segment-bg: #3a3a3c;
        --copy-button-bg: #0a84ff;
        --copy-button-text: white;
        --modal-backdrop: rgba(0, 0, 0, 0.8);
        --toast-bg: rgba(50, 50, 50, 0.9);
        --toast-color: white;
    }
    
    /* 反转图片颜色以适应深色模式 */
    .tutorial-image {
        filter: brightness(0.9) contrast(1.1);
    }
}

/* 添加暗色模式类，用于手动切换 */
.dark-mode {
    --background-color: #000;
    --card-background: #1c1c1e;
    --text-color: #fff;
    --text-secondary: #98989d;
    --border-color: #2c2c2e;
    --segmented-bg: #2c2c2e;
    --active-segment-bg: #3a3a3c;
    --copy-button-bg: #0a84ff;
    --copy-button-text: white;
    --modal-backdrop: rgba(0, 0, 0, 0.8);
    --toast-bg: rgba(50, 50, 50, 0.9);
    --toast-color: white;
}

.dark-mode .tutorial-image {
    filter: brightness(0.9) contrast(1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.4;
    padding-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* 标题栏 */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--ios-transition);
}

.header h1 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
}

/* 切换主题按钮 */
.theme-toggle {
    position: absolute;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

/* 广告卡片样式 - 添加到styles.css文件 */

/* 广告卡片容器 */
.ad-card {
    position: relative;
    padding: 0;
    margin-bottom: 16px;
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s;
}

.ad-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 广告标签 */
.ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 10;
}

.dark-mode .ad-label {
    background-color: rgba(255, 255, 255, 0.25);
}

/* 广告内容区域 */
.ad-content {
    padding: 0;
}

/* 广告链接 */
.ad-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* 广告内部布局 */
.ad-inner {
    display: flex;
    align-items: center;
    padding: 16px;
}

/* 广告媒体区域 */
.ad-media {
    flex: 0 0 90px;
    margin-right: 16px;
}

/* 广告图片 */
.ad-image {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

/* 广告信息区域 */
.ad-info {
    flex: 1;
}

/* 广告标题 */
.ad-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--text-color);
}

/* 广告描述 */
.ad-description {
    font-size: 14px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .ad-inner {
        padding: 12px;
    }
    
    .ad-media {
        flex: 0 0 70px;
        margin-right: 12px;
    }
    
    .ad-image {
        width: 70px;
        height: 70px;
    }
    
    .ad-title {
        font-size: 15px;
    }
    
    .ad-description {
        font-size: 13px;
    }
}

.theme-toggle:active {
    background-color: rgba(128, 128, 128, 0.2);
}

/* 容器 */
.container {
    padding: 10px 16px;
}

/* 卡片样式 */
.card {
    background-color: var(--card-background);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

/* 教程卡片 */
.tutorial-card {
    padding: 0;
    cursor: pointer;
    transition: var(--ios-transition);
}

.tutorial-card:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.card-title h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    color: var(--text-color);
}

.arrow {
    color: var(--text-secondary);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.tutorial-card:hover .arrow {
    transform: translateX(3px);
}

/* 警告卡片 */
.warning-card {
    padding: 14px 16px;
}

.warning-text {
    color: var(--ios-red);
    font-size: 14px;
    line-height: 1.5;
}

/* 教程图片模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-backdrop);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background-color: var(--card-background);
    margin: auto;
    padding: 16px;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 16px;
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.tutorial-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transition: filter 0.3s ease;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .tutorial-image {
        max-width: 100%;
        max-height: 70vh;
    }
}

/* 分段控件 */
.filter-controls {
    margin: 16px 0;
}

.segmented-control {
    display: flex;
    background-color: var(--segmented-bg);
    border-radius: 8px;
    padding: 2px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.segment {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    outline: none;
    cursor: pointer;
    text-align: center;
    transition: var(--ios-transition);
}

.segment.active {
    background-color: var(--active-segment-bg);
    color: var(--text-color);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.segment:active {
    opacity: 0.8;
}

/* 账号容器 */
.accounts-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 账号卡片 */
.account-card {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.account-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.account-type {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.account-region {
    background-color: #007aff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
}

.account-info {
    padding: 12px 16px;
}

.account-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
}

.account-row:last-child {
    margin-bottom: 0;
}

.account-label {
    font-size: 15px;
    color: var(--text-color);
    width: 80px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.account-value {
    font-size: 15px;
    color: var(--text-secondary);
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 50px;
    transition: color 0.3s ease;
}

.password-value {
    letter-spacing: 2px;
}

.remark-value {
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
}

.account-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.account-status {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-available .status-dot {
    background-color: var(--ios-green);
}

.status-unavailable .status-dot {
    background-color: var(--ios-red);
}

.status-text {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.button-group {
    display: flex;
    gap: 8px;
}

.copy-button {
    background-color: var(--copy-button-bg);
    color: var(--copy-button-text);
    padding: 6px 16px;
    border-radius: 16px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: var(--ios-transition), background-color 0.3s ease, color 0.3s ease;
}

.copy-button:active {
    transform: scale(0.96);
    opacity: 0.8;
}

/* Toast 提示 */
.toast {
    visibility: hidden;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background-color: var(--toast-bg);
    color: var(--toast-color);
    text-align: center;
    border-radius: 8px;
    padding: 12px 24px;
    z-index: 1000;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

@keyframes fadein {
    from { 
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) scale(1);
    }
}

@keyframes fadeout {
    from { 
        opacity: 1; 
        transform: translateX(-50%) scale(1);
    }
    to { 
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
    }
}

/* 空数据提示 */
.empty-message {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-size: 15px;
    transition: color 0.3s ease;
}

/* 响应式调整 */
@media (min-width: 768px) {
    .accounts-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 16px;
    }
    
    .modal-content {
        max-width: 70%;
    }
}

@media (max-width: 480px) {
    .copy-button {
        font-size: 12px;
        padding: 5px 6px;
        min-width: 72px;
    }
    
    .button-group {
        gap: 5px;
    }
    
    .account-status {
        font-size: 13px;
    }
    
    .status-text {
        font-size: 13px;
    }
    
    .account-footer {
        padding: 10px 12px;
    }
}
/* 以下是需要添加到styles.css文件末尾的灯箱样式 */

/* 图片灯箱容器 */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* 暗色模式适配 */
.dark-mode .lightbox {
    background-color: rgba(0, 0, 0, 0.95);
}

/* 灯箱内容容器 */
.lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 灯箱图片 */
.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.2s ease;
    transform-origin: center center;
    user-select: none;
    cursor: zoom-in;
}

/* 当图片被放大时的样式 */
.lightbox-image.scaled {
    cursor: grab;
}

.lightbox-image.scaled:active {
    cursor: grabbing;
}

/* 关闭按钮 */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
    color: #fff;
}

/* 操作提示 */
.lightbox-hint {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 2001;
    opacity: 0;
    transition: opacity 0.5s;
}

/* 缩放控制按钮 */
.lightbox-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2001;
}

.lightbox-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lightbox-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-reset {
    font-size: 14px !important;
    width: auto !important;
    border-radius: 16px !important;
    padding: 0 12px !important;
}

/* 移动设备响应式设计 */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 36px;
    }
    
    .lightbox-hint {
        bottom: 20px;
        left: 20px;
        font-size: 12px;
        padding: 10px 14px;
    }
    
    .lightbox-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .lightbox-controls button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* 低高度屏幕适配 */
@media (max-height: 500px) {
    .lightbox-hint {
        bottom: 10px;
        left: 10px;
        padding: 8px 10px;
    }
    
    .lightbox-controls {
        bottom: 10px;
        right: 10px;
    }
}

/* 复制弹窗样式 */
.copy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-popup.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    background-color: var(--card-background);
    border-radius: 14px;
    width: 85%;
    max-width: 340px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: background-color 0.3s ease;
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popupFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.confirm-icon {
    width: 60px;
    height: 60px;
    background-color: var(--ios-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 16px;
}

.success-message {
    font-size: 22px;
    font-weight: 600;
    color: var(--ios-blue);  /* 改用蓝色 */
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.prompt-description {
    font-size: 16px;
    line-height: 1.5;
    color: #333;  /* 深色模式下自动适应，浅色模式下使用更深的颜色 */
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-weight: 500;  /* 稍微加粗 */
}

.dark-mode .prompt-description {
    color: #ddd;  /* 深色模式下使用更亮的颜色 */
}

.prompt-steps {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.steps-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--ios-blue);  /* 使用蓝色 */
    transition: color 0.3s ease;
}

/* 替换步骤中的数字为图标 */
.step {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 15px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 30px;
    height: 30px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 6px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--ios-blue);
    stroke-width: 2.5;
}

/* 自定义每个步骤的图标 */
.step-icon.share-icon {
    background-color: #f2f2f7;
}

.step-icon.menu-icon {
    background-color: #f2f2f7;
}

.step-icon.check-icon {
    background-color: #f2f2f7;
}

.dark-mode .step-icon {
    background-color: #333;
}

.dark-mode .step-icon svg {
    stroke: #0a84ff;
}

.prompt-buttons {
    display: flex;
    justify-content: center;
}

.prompt-confirm {
    background-color: var(--ios-blue);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.prompt-confirm:active {
    opacity: 0.8;
}

.prompt-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}
    color: var(--ios-green);  /* 改用绿色 */
    margin-bottom: 20px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.safety-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ios-red);  /* 保持红色但加深 */
    margin-bottom: 12px;
    letter-spacing: 0.5px;  /* 字间距 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.safety-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    transition: color 0.3s ease;
    font-weight: 500;  /* 稍微加粗 */
}

/* 在安全提示内容中突出显示关键信息 */
.safety-content strong {
    color: var(--ios-red);
    font-weight: 700;
}

/* 使用彩色强调不同部分 */
.highlight-blue {
    color: var(--ios-blue);
    font-weight: 600;
}

.highlight-red {
    color: var(--ios-red);
    font-weight: 600;
}

.highlight-green {
    color: var(--ios-green);
    font-weight: 600;
}

.dark-mode .safety-content {
    color: #eee;  /* 深色模式下使用更亮的颜色 */
}

/* 为不同的提示部分添加图标 */
.warning-section {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.warning-section:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 1px;
}

.info-section {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.info-section:before {
    content: "ℹ️";
    position: absolute;
    left: 0;
    top: 1px;
}

.check-section {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.check-section:before {
    content: "✓";
    position: absolute;
    left: 2px;
    top: 1px;
    color: var(--ios-green);
    font-weight: bold;
    font-size: 18px;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-confirm {
    background-color: var(--ios-blue);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.popup-confirm:active {
    opacity: 0.8;
}

/* 添加到主屏幕提示样式 */
.home-screen-prompt {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1900;
    justify-content: center;
    align-items: center;
}

.prompt-content {
    position: relative;
    background-color: var(--card-background);
    border-radius: 14px;
    width: 90%;
    max-width: 360px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.9);
    transition: background-color 0.3s ease;
}

@keyframes promptFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes promptFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.prompt-icon {
    width: 60px;
    height: 60px;
    background-color: var(--ios-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    padding: 15px;
}

.prompt-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.prompt-title {
    font-size: 22px;
    font-weight: 600;