/* ==========================================================
 * 漫画阅读网站 - 公共样式 v2
 * 设计风格: 柔和少女漫
 * 主色: #FB64AD
 * ========================================================== */

/* ----- 重置 ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #2A2333;
    background: #FFF7FB;
    min-width: 1200px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 背景顶部装饰渐变 */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 480px;
    background:
        radial-gradient(ellipse 800px 320px at 15% 0%, rgba(251,100,173,0.10), transparent 70%),
        radial-gradient(ellipse 700px 280px at 85% 0%, rgba(255,182,213,0.15), transparent 70%),
        linear-gradient(180deg, #FFF1F8 0%, #FFF7FB 60%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
body > * { position: relative; z-index: 1; }

a { color: #2A2333; text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; vertical-align: middle; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; color: #2A2333; }
button, input, textarea { font: inherit; outline: none; }
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #C9BFD1; }

/* 自定义滚动条 */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #FFF1F8; }
::-webkit-scrollbar-thumb { background: #FFC4DF; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #FB64AD; }

/* 文本选中 */
::selection { background: #FFC4DF; color: #2A2333; }

/* ----- CSS变量 ----- */
:root {
    --primary: #FB64AD;
    --primary-hover: #FF7FBC;
    --primary-dark: #E54B95;
    --primary-soft: #FFE6F1;
    --primary-softer: #FFF1F8;
    --primary-grad: linear-gradient(135deg, #FB64AD 0%, #FF8FC6 100%);
    --primary-grad-h: linear-gradient(90deg, #FB64AD 0%, #FF8FC6 100%);

    --accent: #7B5CFF;        /* 紫色辅助 */
    --sakura: #FFB6D5;        /* 樱花粉 */

    --success: #4ECDA0;
    --warning: #FFB347;
    --danger: #FF5B7C;

    /* VIP 保留金橙系，强化付费身份 */
    --vip: #FF8C40;
    --vip-grad: linear-gradient(90deg, #FFB347 0%, #FF8C40 50%, #FF6B00 100%);

    --text-main: #2A2333;
    --text-sub: #6B6473;
    --text-tip: #A398B0;

    --border: #F1E4EE;
    --border-light: #F8ECF4;

    --bg-page: #FFF7FB;
    --bg-card: #FFFFFF;

    /* 粉调阴影 */
    --shadow-sm: 0 2px 10px rgba(251,100,173,0.08);
    --shadow-md: 0 6px 24px rgba(251,100,173,0.12);
    --shadow-lg: 0 12px 40px rgba(251,100,173,0.18);
    --shadow-hover: 0 10px 30px rgba(251,100,173,0.20);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
}

/* ----- 通用容器 ----- */
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- 按钮 ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s cubic-bezier(.4,.0,.2,1);
    user-select: none;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary {
    background: var(--primary-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(251,100,173,0.30);
}
.btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(251,100,173,0.40);
    filter: brightness(1.05);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-color: var(--primary);
}
.btn-default {
    background: #fff;
    color: var(--text-main);
    border-color: var(--border);
}
.btn-default:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-softer);
}
.btn-vip {
    background: var(--vip-grad);
    color: #fff;
    border: 0;
    box-shadow: 0 4px 14px rgba(255,140,64,0.35);
    font-weight: 600;
}
.btn-vip:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,140,64,0.45);
    filter: brightness(1.05);
}
.btn-sm { padding: 5px 14px; font-size: 12px; }
.btn-lg { padding: 13px 36px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn-text {
    color: var(--text-sub); border: 0; background: transparent;
    padding: 8px 12px; border-radius: var(--radius-pill);
}
.btn-text:hover { color: var(--primary); background: var(--primary-softer); }

/* ----- 输入框 ----- */
.form-input {
    display: block;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text-main);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-input:hover { border-color: #F2C7DE; }
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(251,100,173,0.12);
    background: #fff;
}
.form-group { margin-bottom: 18px; }
.form-label {
    display: block; margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 13px;
}
.form-row { display: flex; gap: 12px; }
.form-row .form-input { flex: 1; }

/* ----- 卡片 ----- */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(251,100,173,0.04);
}
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: var(--text-main);
}
.card-title::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 20px;
    background: var(--primary-grad);
    border-radius: 2px;
}
.card-title .more {
    font-size: 13px; font-weight: normal;
    color: var(--text-tip);
    display: inline-flex; align-items: center; gap: 4px;
    transition: all .2s;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.card-title .more:hover {
    color: var(--primary);
    background: var(--primary-softer);
}

/* ----- 头部导航 ----- */
.site-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(251,100,173,0.08);
    height: 64px;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 1px 0 rgba(251,100,173,0.04);
}
.header-inner { display: flex; align-items: center; height: 64px; }
.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    margin-right: 40px;
    letter-spacing: 0.5px;
}
.logo-icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--primary-grad);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(251,100,173,0.35);
    transform: rotate(-6deg);
    transition: transform .3s;
}
.logo:hover .logo-icon { transform: rotate(0deg) scale(1.05); }
.logo-text {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* 自定义图片 logo (后台填了 site_logo URL 时启用) */
.logo-img {
    height: 40px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    transition: transform .3s;
    vertical-align: middle;
}
.logo:hover .logo-img { transform: scale(1.04); }
.nav-menu { display: flex; gap: 8px; margin-right: auto; }
.nav-menu a {
    font-size: 15px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    color: var(--text-sub);
    transition: all .2s;
    font-weight: 500;
}
.nav-menu a:hover {
    color: var(--primary);
    background: var(--primary-softer);
}
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-soft);
    font-weight: 600;
}
.nav-vip {
    color: var(--vip) !important;
    position: relative;
}
.nav-vip:hover { background: rgba(255,140,64,0.10) !important; }
.nav-vip.active { background: rgba(255,140,64,0.12) !important; }
.nav-vip i { margin-right: 4px; }

.header-search { margin-right: 16px; }
.header-search form {
    display: flex; align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0 6px 0 16px;
    width: 260px;
    height: 38px;
    transition: all .2s;
}
.header-search form:hover { border-color: #F2C7DE; }
.header-search form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(251,100,173,0.10);
}
.header-search input {
    flex: 1; border: 0; background: transparent;
    padding: 6px 8px;
    color: var(--text-main);
}
.header-search button {
    border: 0;
    background: var(--primary-grad);
    color: #fff;
    cursor: pointer;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.header-search button:hover { transform: scale(1.08); filter: brightness(1.05); }

.header-user { display: flex; align-items: center; gap: 10px; }
.avatar-sm {
    width: 32px; height: 32px; border-radius: 50%;
    object-fit: cover; background: var(--primary-softer);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--border);
}

/* 用户下拉菜单 */
.user-dropdown { position: relative; }
.user-trigger {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 12px 4px 4px; cursor: pointer;
    border-radius: var(--radius-pill);
    transition: background .2s;
}
/* 用户下拉菜单 */
.user-dropdown {
    position: relative;
    /* 下方留出"无形悬停桥"区域，避免鼠标移动到菜单时途经空隙触发关闭 */
    padding-bottom: 12px;
    margin-bottom: -12px;
}
.user-trigger {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 12px 4px 4px; cursor: pointer;
    border-radius: var(--radius-pill);
    transition: background .2s;
}
.user-dropdown:hover .user-trigger { background: var(--primary-softer); }
.user-trigger span { font-weight: 500; }
.user-menu {
    display: none; position: absolute; right: 0; top: 100%;
    background: #fff; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 180px; padding: 8px 0;
    /* 不再用 margin-top 制造空隙；改为视觉间距由 .user-dropdown 的 padding-bottom 提供 */
    margin-top: 0;
    border: 1px solid var(--border-light);
}
.user-dropdown:hover .user-menu { display: block; animation: fadeInUp .2s; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.user-menu a {
    display: flex; align-items: center;
    padding: 9px 18px; color: var(--text-main);
    transition: all .15s;
    font-size: 14px;
}
.user-menu a:hover {
    background: var(--primary-softer);
    color: var(--primary);
}
.user-menu i { margin-right: 10px; width: 16px; color: var(--text-tip); }
.user-menu a:hover i { color: var(--primary); }
.menu-divider { height: 1px; background: var(--border-light); margin: 6px 8px; }

/* VIP徽章 */
.vip-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: var(--vip-grad);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 11px;
    line-height: 1.6;
    margin-left: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255,140,64,0.30);
}

/* ----- 页脚 ----- */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 36px 0 28px;
    margin-top: 60px;
    color: var(--text-tip);
    text-align: center;
    font-size: 13px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
    opacity: 0.6;
}
.footer-links a {
    color: var(--text-sub);
    margin: 0 6px;
    transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-links .dot { color: var(--border); margin: 0 4px; }
.footer-copyright { margin-top: 12px; color: var(--text-tip); }

/* ----- 未成年人成长保护标识 ----- */
/* 醒目蓝色徽章, 不可点击, 用于醒目展示平台对未成年人保护的承诺 */
.footer-minor-protect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(24, 144, 255, 0.35);
    cursor: default;           /* 明确非可点击 */
    user-select: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.footer-minor-protect:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(24, 144, 255, 0.45);
}
.footer-minor-protect i {
    font-size: 15px;
    color: #fff;
}

/* ----- 漫画卡片 ----- */
.comic-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .3s cubic-bezier(.4,.0,.2,1);
    cursor: pointer;
    display: block;
    position: relative;
}
.comic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.comic-card:hover .comic-cover img { transform: scale(1.06); }
.comic-card:hover .comic-title { color: var(--primary); }
.comic-cover {
    position: relative;
    width: 100%;
    padding-top: 140%;      /* 5:7 比例 */
    background: var(--primary-softer);
    overflow: hidden;
}
.comic-cover img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s cubic-bezier(.4,.0,.2,1);
}
.comic-cover .tag {
    position: absolute; top: 10px; left: 10px;
    background: var(--vip-grad); color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,140,64,0.40);
    letter-spacing: 0.5px;
}
.comic-cover .status {
    position: absolute; top: 10px; right: 10px;
    bottom: auto; left: auto;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.comic-info { padding: 12px 14px 14px; }
.comic-title {
    font-size: 14px; color: var(--text-main);
    font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    transition: color .2s;
}
.comic-author {
    font-size: 12px; color: var(--text-tip); margin-top: 4px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.comic-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--text-tip); margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed var(--border-light);
}
.comic-meta i { margin-right: 3px; }
.comic-meta span { display: inline-flex; align-items: center; }

/* 漫画网格布局 */
.comic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.comic-grid-6 { grid-template-columns: repeat(6, 1fr); gap: 16px; }
.comic-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ----- 星级评分 ----- */
.stars { display: inline-flex; color: #FFB800; font-size: 14px; align-items: center; }
.stars .fa { margin-right: 2px; }
.stars-empty { color: #E8DEE7; }
.stars-input .fa {
    cursor: pointer; font-size: 26px; margin-right: 6px;
    transition: transform .15s;
}
.stars-input .fa:hover { transform: scale(1.2); }

/* ----- 标签 ----- */
.tag-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    background: var(--primary-softer);
    color: var(--primary-dark);
    margin-right: 6px;
    font-weight: 500;
}
.tag-badge.primary {
    background: var(--primary-grad);
    color: #fff;
    box-shadow: 0 2px 8px rgba(251,100,173,0.30);
}
.tag-badge.vip {
    background: var(--vip-grad);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,140,64,0.30);
}

/* 分类筛选 */
.filter-bar {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(251,100,173,0.04);
}
.filter-row {
    display: flex; align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-light);
}
.filter-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.filter-label {
    color: var(--text-sub);
    width: 70px; padding-top: 6px;
    flex-shrink: 0; font-weight: 500;
}
.filter-items { flex: 1; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-item {
    padding: 5px 16px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--text-sub);
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
}
.filter-item:hover {
    color: var(--primary);
    background: var(--primary-softer);
}
.filter-item.active {
    background: var(--primary-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 10px rgba(251,100,173,0.30);
    font-weight: 500;
}

/* ----- 分页 ----- */
.pagination { display: flex; justify-content: center; gap: 6px; margin: 36px 0; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center; justify-content: center;
    min-width: 38px; height: 38px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: #fff;
    text-align: center;
    color: var(--text-main);
    transition: all .2s;
    font-size: 13px;
}
.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-softer);
    transform: translateY(-1px);
}
.pagination .current {
    background: var(--primary-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(251,100,173,0.30);
    font-weight: 600;
}
.pagination .disabled {
    color: #D5C9D9;
    cursor: not-allowed;
    background: #FAF6F9;
}
.pagination .disabled:hover {
    border-color: var(--border);
    color: #D5C9D9;
    background: #FAF6F9;
    transform: none;
}

/* ----- 弹窗 ----- */
.modal-mask {
    display: none; position: fixed; top:0; left:0; right:0; bottom:0;
    background: rgba(42,35,51,0.50);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center; align-items: center;
}
.modal-mask.show { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    min-width: 420px; max-width: 90vw;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: modalIn .3s cubic-bezier(.4,.0,.2,1);
}
@keyframes modalIn {
    from { transform: scale(.92) translateY(10px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(135deg, var(--primary-softer), #fff);
}
.modal-title { font-size: 16px; font-weight: 700; color: var(--text-main); }
.modal-close {
    cursor: pointer;
    color: var(--text-tip);
    font-size: 22px;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: all .2s;
}
.modal-close:hover { color: var(--primary); background: var(--primary-softer); }
.modal-body { padding: 24px 22px; }
.modal-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border-light);
    text-align: right;
    background: #FFFCFE;
}
.modal-footer .btn { margin-left: 10px; }

/* ----- 提示消息 ----- */
.toast {
    position: fixed; top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(42,35,51,0.88);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    z-index: 2000; font-size: 14px;
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.20);
    backdrop-filter: blur(8px);
}
.toast.show { opacity: 1; }

/* ----- 空状态 ----- */
.empty-state {
    text-align: center; padding: 80px 20px;
    color: var(--text-tip);
}
.empty-state .fa {
    font-size: 56px; margin-bottom: 18px;
    color: #F2D9E7;
    display: inline-flex; align-items: center; justify-content: center;
    width: 100px; height: 100px;
    background: var(--primary-softer);
    border-radius: 50%;
}
.empty-state p { margin: 8px 0; }

/* ----- 加载动画 ----- */
.loading {
    display: inline-block;
    width: 22px; height: 22px;
    border: 2.5px solid var(--primary-softer);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----- 工具类 ----- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sub { color: var(--text-sub); }
.text-tip { color: var(--text-tip); }
.text-primary { color: var(--primary); }
.text-danger { color: var(--danger); }
.text-vip { color: var(--vip); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.flex { display: flex; } .flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.hidden { display: none !important; }
