/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: #f1f2f3;
    color: #18191c;
    overflow-x: hidden;
}

/* 左侧导航栏 */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 68px;
    height: 100vh;
    background: #fff;
    border-right: 1px solid #e3e5e7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    z-index: 100;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #fb7299;
    margin-bottom: 24px;
}

.nav-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.2s;
    color: #61666d;
    font-size: 12px;
}

.nav-item:hover {
    color: #fb7299;
    background: #ffeef5;
}

.nav-item.active {
    color: #fb7299;
}

.nav-item .icon {
    font-size: 22px;
    margin-bottom: 4px;
}

.nav-item .text {
    font-size: 11px;
}

/* 主内容区域 */
.main-content {
    margin-left: 68px;
    min-height: 100vh;
}

/* 顶部栏 */
.top-bar {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e3e5e7;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 99;
}

.logo-large {
    font-size: 26px;
    font-weight: bold;
    color: #fb7299;
    letter-spacing: -1px;
}

.search-box {
    flex: 1;
    max-width: 520px;
    display: flex;
    background: #f1f2f3;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.search-box:focus-within {
    border-color: #fb7299;
    background: #fff;
}

.search-box input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
}

.search-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.upload-btn {
    padding: 8px 20px;
    background: #fb7299;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.upload-btn:hover {
    background: #ff85ad;
    transform: translateY(-1px);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb7299, #ff9a9e);
    cursor: pointer;
}

/* 标签导航 */
.tab-nav {
    background: #fff;
    padding: 0 24px;
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #e3e5e7;
}

.tab-item {
    padding: 14px 4px;
    cursor: pointer;
    font-size: 14px;
    color: #61666d;
    position: relative;
    transition: all 0.2s;
}

.tab-item:hover {
    color: #fb7299;
}

.tab-item.active {
    color: #fb7299;
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fb7299;
    border-radius: 3px 3px 0 0;
}

/* 内容区域 */
.content-area {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

/* 筛选工具栏 */
.filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sort-options {
    display: flex;
    gap: 12px;
}

.sort-btn {
    padding: 8px 16px;
    border: 1px solid #e3e5e7;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #61666d;
    transition: all 0.2s;
}

.sort-btn:hover {
    border-color: #fb7299;
    color: #fb7299;
}

.sort-btn.active {
    background: #fff0f6;
    border-color: #fb7299;
    color: #fb7299;
    font-weight: 500;
}

.more-filter {
    padding: 8px 16px;
    color: #61666d;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.more-filter:hover {
    color: #fb7299;
}

/* 卡牌网格布局 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* 卡片基础样式 */
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 114, 153, 0.15);
}

/* 卡片封面区域 */
.card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.character-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.skill-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.character-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 卡片徽章 */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(8px);
}

.character-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
}

.skill-badge {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.9), rgba(245, 87, 108, 0.9));
}

/* 卡片信息区域 */
.card-info {
    padding: 16px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #18191c;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-subtitle {
    font-size: 12px;
    color: #9499a0;
    margin-bottom: 12px;
    font-weight: 500;
}

/* 角色卡片详情 */
.card-details {
    background: #f6f7f8;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

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

.label {
    font-size: 11px;
    color: #9499a0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value {
    font-size: 13px;
    color: #61666d;
    line-height: 1.5;
}

.passive-skill {
    color: #6a89cc;
    font-weight: 500;
}

.ultimate {
    color: #eb4d4b;
    font-weight: 600;
}

/* 技能卡片的技能描述 */
.skill-description {
    font-size: 13px;
    color: #61666d;
    line-height: 1.6;
    margin-bottom: 12px;
    padding: 12px;
    background: #fff5f5;
    border-left: 3px solid #ff6b6b;
    border-radius: 0 6px 6px 0;
}

/* 卡片元数据 */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    color: #9499a0;
}

.author {
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 卡片统计信息 */
.card-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #9499a0;
}

/* 页面切换动画 */
.page-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 响应式设计 */
/* 桌面端隐藏底部导航 */
.bottom-nav { display: none; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 150;
}

@media (max-width: 1400px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    /* 隐藏桌面侧边栏 */
    .sidebar { display: none; }
    .main-content { margin-left: 0; }

    /* 底部导航栏 */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e3e5e7;
        z-index: 200;
        justify-content: space-around;
        padding: 6px 0 env(safe-area-inset-bottom, 0);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 4px 0;
        cursor: pointer;
        color: #61666d;
        font-size: 10px;
        transition: color 0.2s;
        min-width: 56px;
    }

    .bottom-nav-item.active { color: #fb7299; }
    .bottom-nav-item .bn-icon { font-size: 20px; margin-bottom: 2px; }
    .bottom-nav-item .bn-text { font-size: 10px; }

    .main-content { padding-bottom: 64px; }

    /* 顶部栏 - 简洁模式 */
    .top-bar { padding: 10px 12px; gap: 8px; }
    .logo-large { display: none; }
    .search-box { max-width: none; flex: 1; }
    .search-box input { font-size: 13px; padding: 8px 12px; }
    .search-btn { padding: 8px 12px; }

    .upload-btn { padding: 6px 12px; font-size: 11px; white-space: nowrap; }
    .login-btn { padding: 6px 12px; font-size: 11px; white-space: nowrap; }
    .user-actions { gap: 6px; }
    .username { display: none; }

    /* 标签导航 - 横向滚动 */
    .tab-nav {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 12px;
        scrollbar-width: none;
    }
    .tab-nav::-webkit-scrollbar { display: none; }
    .tab-item {
        padding: 12px 14px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 筛选工具栏 */
    .filter-toolbar { margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
    .sort-options { gap: 6px; overflow-x: auto; flex: 1; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .sort-options::-webkit-scrollbar { display: none; }
    .sort-btn { padding: 6px 10px; font-size: 11px; white-space: nowrap; }
    .more-filter { font-size: 11px; padding: 6px 10px; }

    /* 内容区域 */
    .content-area { padding: 12px; }

    /* 卡片 - 单列 */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .card-cover { aspect-ratio: 16/9; }
    .card-image-placeholder { font-size: 36px; }
    .card-info { padding: 12px; }
    .card-title { font-size: 14px; }
    .card-details { padding: 10px; }
    .detail-row { margin-bottom: 6px; }
    .value { font-size: 12px; }
    .skill-description { font-size: 12px; padding: 10px; }

    /* 模态框全屏 */
    .login-modal { width: calc(100vw - 32px); margin: 0 16px; max-height: 85vh; }
    .author-modal { width: calc(100vw - 32px); margin: 0 16px; }
    .modal-header { padding: 20px 20px 12px; }
    .modal-header h2 { font-size: 18px; }
    .modal-body { padding: 0 20px 24px; }

    .author-header { padding: 24px 20px; gap: 12px; }
    .author-avatar { width: 56px; height: 56px; font-size: 24px; }
    .author-name { font-size: 18px; }
    .author-stats { padding: 16px 20px; gap: 24px; }
    .stat-num { font-size: 18px; }
    .author-works { padding: 16px 20px; }
    .author-contact { padding: 16px 20px; }
    .works-title, .contact-title { font-size: 14px; }

    /* Toast 贴底 */
    .toast { bottom: 80px; max-width: 90vw; font-size: 13px; padding: 10px 20px; }

    /* 个人中心 */
    .profile-page { max-width: none; margin: 0; }
    .profile-body { padding: 8px 16px 20px; }
    .account-row { padding: 16px 0; flex-direction: column; align-items: flex-start; gap: 10px; }
    .account-actions { width: 100%; }
    .account-actions .btn-primary,
    .account-actions .btn-outline,
    .account-actions .btn-danger { flex: 1; text-align: center; }

    .profile-header { padding: 24px 16px; gap: 14px; }
    .profile-avatar-lg { width: 56px; height: 56px; font-size: 24px; }
    .profile-header-info h2 { font-size: 18px; }
}

/* 手机端 (480px 以下) */
@media (max-width: 480px) {
    .card-badge { top: 8px; left: 8px; padding: 3px 8px; font-size: 10px; }
    .card-cover { aspect-ratio: 4/3; }
    .card-stats { font-size: 11px; gap: 12px; }
    .card-meta { font-size: 11px; flex-wrap: wrap; gap: 4px; }

    .code-row { flex-direction: column; }
    .send-code-btn { width: 100%; text-align: center; }

    .user-actions { gap: 4px; }
    .upload-btn, .login-btn { padding: 5px 10px; font-size: 11px; }
}

/* ===== 登录/用户按钮 ===== */
.login-btn {
    padding: 8px 20px;
    background: #fff;
    color: #fb7299;
    border: 1px solid #fb7299;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.login-btn:hover {
    background: #fb7299;
    color: #fff;
}

.logout-btn {
    padding: 6px 14px;
    background: transparent;
    color: #9499a0;
    border: 1px solid #e3e5e7;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.logout-btn:hover {
    color: #fb7299;
    border-color: #fb7299;
}

.username {
    font-size: 13px;
    color: #18191c;
    font-weight: 500;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== 模态框通用样式 ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    animation: overlayFadeIn 0.2s ease;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: #fff;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #61666d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* ===== 登录模态框 ===== */
.login-modal {
    width: 420px;
    position: relative;
}

.modal-header {
    padding: 28px 32px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 22px;
    color: #18191c;
}

.modal-body {
    padding: 0 32px 32px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 13px;
    color: #61666d;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e3e5e7;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: #f9fafb;
}

.login-form input:focus {
    border-color: #fb7299;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(251, 114, 153, 0.1);
}

.code-row {
    display: flex;
    gap: 12px;
}

.code-row input {
    flex: 1;
}

.send-code-btn {
    padding: 12px 16px;
    background: #fff0f6;
    color: #fb7299;
    border: 1px solid #fb7299;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s;
}

.send-code-btn:hover:not(:disabled) {
    background: #fb7299;
    color: #fff;
}

.send-code-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #fb7299;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #ff85ad;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 114, 153, 0.4);
}

.form-tip {
    text-align: center;
    font-size: 12px;
    color: #9499a0;
    margin-top: 16px;
}

/* ===== 作者详情模态框 ===== */
.author-modal {
    width: 560px;
    position: relative;
    padding: 0;
}

.author-header {
    padding: 40px 32px 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

.author-bio {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.author-stats {
    display: flex;
    padding: 24px 32px;
    gap: 40px;
    border-bottom: 1px solid #f0f1f2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 22px;
    font-weight: bold;
    color: #18191c;
}

.stat-label {
    font-size: 12px;
    color: #9499a0;
    margin-top: 4px;
}

.author-works {
    padding: 24px 32px;
    border-bottom: 1px solid #f0f1f2;
}

.works-title {
    font-size: 16px;
    color: #18191c;
    margin-bottom: 16px;
}

.works-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.work-item:hover {
    background: #fff0f6;
}

.work-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.work-info {
    flex: 1;
    min-width: 0;
}

.work-name {
    font-size: 14px;
    font-weight: 600;
    color: #18191c;
    margin-bottom: 2px;
}

.work-desc {
    font-size: 12px;
    color: #9499a0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-type-tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.author-contact {
    padding: 24px 32px;
}

.contact-title {
    font-size: 16px;
    color: #18191c;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #61666d;
    padding: 8px 0;
}

.contact-icon {
    font-size: 18px;
}

/* ===== Toast 提示 ===== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: rgba(39, 174, 96, 0.9);
}

.toast.error {
    background: rgba(231, 76, 60, 0.9);
}

/* ===== 个人中心页面 ===== */
.profile-page {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.profile-header {
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.profile-header-info h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 4px;
}

.profile-header-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.profile-body {
    padding: 8px 32px 24px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #18191c;
    padding: 20px 0 8px;
    border-bottom: 1px solid #f0f1f2;
}

.account-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f1f2;
}

.account-row:last-child {
    border-bottom: none;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.account-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.account-label {
    font-size: 13px;
    color: #9499a0;
    margin-bottom: 2px;
}

.account-value {
    font-size: 15px;
    color: #18191c;
    font-weight: 500;
}

.account-status {
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.account-status.bound {
    background: #e8f5e9;
    color: #2e7d32;
}

.account-status.unbound {
    background: #fff3e0;
    color: #e65100;
}

.account-actions {
    display: flex;
    gap: 8px;
}

.btn-primary {
    padding: 8px 20px;
    background: #fb7299;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #ff85ad;
}

.btn-outline {
    padding: 8px 16px;
    background: #fff;
    color: #61666d;
    border: 1px solid #e3e5e7;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: #fb7299;
    color: #fb7299;
}

.btn-danger {
    padding: 8px 16px;
    background: #fff;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.btn-danger:hover {
    background: #e74c3c;
    color: #fff;
}
