/* 全局样式与重置 */
:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 26, 0.4);
    /* 这些颜色会被 Django 模板内联覆盖 */
    --primary-color: #8c52ff;
    --secondary-color: #00e5ff;
    --text-main: #ffffff;
    --text-sub: #a0a0b0;

    /* 动态变量，由 JS 接管控制 */
    --rotate-x: 0deg;
    --rotate-y: 0deg;
    --bg-x: 50%;
    --bg-y: 50%;
    --border-angle: 0deg;
    --thickness-x: 0px;
    --thickness-y: 0px;

    /* 弹簧与缓动系数由 JS 控制 */
    --transition-speed: 0s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /* 配合 scroll-snap，不允许 body 直接滚动，交给包裹容器 */
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.scroll-container {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* 强制系统级别的平滑滚动和事件穿透 */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
    /* 隐藏滚动条但保留功能 */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.panel {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 瀑布流专有层：自己具备 Snap 锚点，但内部放开高度与独立滚动 */
.panel-waterfall {
    width: 100vw;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    /* 必须允许子元素高度溢出撑开 */
}

/* 瀑布流内部的子面层：解除 Snap 控制，恢复堆叠排版 */
.sub-panel {
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 确保第一屏名片层级和事件正常 */
.panel-profile {
    z-index: 10;
    pointer-events: auto;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    perspective: 1500px;
}

/* --- 主界面场景与相机 --- */
.scene {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    z-index: 10;
    /* 确保悬浮在全屏频谱之上 */
    opacity: 0;
    transition: opacity 2s ease 0.5s;
}

.scene.visible {
    opacity: 1;
}

/* ===== 赛博音频系统 (重构版) ===== */

/* 1. 极简静音图标位于右上角 */
.minimal-mute-btn {
    position: fixed;
    top: 25px;
    right: 35px;
    z-index: 100;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    padding: 10px;
    border-radius: 50%;
}

.minimal-mute-btn:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
}

.minimal-mute-btn.muted {
    color: rgba(255, 100, 100, 0.6);
}

/* 2. 底层铺满全屏的前置声波图 */
.full-visualizer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 30vh;
    max-height: 300px;
    z-index: 1;
    /* 主卡片在 z-index 10 */
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease;
    mix-blend-mode: screen;
}

.full-visualizer-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .minimal-mute-btn {
        top: 15px;
        right: 15px;
    }

    .full-visualizer-container {
        /* 控制移动端画幅限制 */
        height: 25vh;
        max-height: 250px;
    }
}

/* --- API 一言动态文本 --- */
.api-moto-text {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    text-align: center;
    color: var(--text-sub);
    font-size: 0.85rem;
    font-family: 'Noto Sans SC', sans-serif;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: opacity 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 5;
}



/* ==========================================================================
   Archive Module (Second Screen) Styles
   ========================================================================== */
/* 为 3D 画布提供深远滚轮深度的轨道层，控制在 300vh */
.archive-scroll-track {
    width: 100vw;
    height: 300vh;
    position: relative;
    z-index: 5;
}

/* 粘性视图：在 250vh 滚过期间，始终吸附在屏幕可视区顶端 */
.panel-archive {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: transparent;
    color: #fff;
    font-family: 'Space Grotesk', 'Syncopate', 'Noto Sans SC', sans-serif;
    overflow: hidden;
    /* 防止 3D 内容在底部溢出 */
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    /* 关键修复：默认让出滚轮事件给背后的 scroll-container，仅在 JS 逻辑需要接管点击时才开启 */
    pointer-events: none;
}

.panel-archive .info-panel {
    position: absolute;
    top: 50%;
    right: 8vw;
    transform: translateY(-50%) translateX(40px) scale(0.95);
    width: 420px;
    background: linear-gradient(135deg, rgba(12, 12, 16, 0.8) 0%, rgba(4, 4, 6, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 16px 0 16px;
    padding: 40px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 20px rgba(0, 229, 255, 0.05),
        0 0 15px rgba(0, 229, 255, 0.15);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

/* 赛博网格背景内衬 */
.panel-archive .info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    pointer-events: none;
}

/* 循环式全息扫描线动效 */
.panel-archive .info-panel::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.15), transparent);
    animation: scanline 4s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes scanline {
    0% {
        top: -20%;
    }

    100% {
        top: 120%;
    }
}

.panel-archive .info-panel.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
    pointer-events: auto;
}

.panel-archive .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.panel-archive .tag {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    box-shadow: inset 0 0 8px rgba(140, 82, 255, 0.2);
    text-transform: uppercase;
}

.panel-archive button#btn-close {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    padding: 6px 16px;
    transition: all 0.3s ease;
}

.panel-archive button#btn-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.panel-archive h2#ui-id {
    font-family: 'Orbitron', 'Syncopate', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    /* 赛博朋克经典的红蓝通道错位阴影 */
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5), 3px 0px 0px rgba(140, 82, 255, 0.6), -2px 0px 0px rgba(0, 229, 255, 0.4);
}

.panel-archive p#ui-desc {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 32px 0;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
}

.panel-archive p#ui-desc::-webkit-scrollbar {
    width: 3px;
}

.panel-archive p#ui-desc::-webkit-scrollbar-track {
    background: transparent;
}

.panel-archive p#ui-desc::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

.panel-archive .cta-row {
    display: flex;
    gap: 16px;
}

.panel-archive .btn {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    background: var(--secondary-color);
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-radius: 0;
    border: 1px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.panel-archive .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.panel-archive .btn:hover {
    background: transparent;
    color: var(--secondary-color);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
    transform: translateY(-2px);
}

.panel-archive .btn:hover::before {
    left: 100%;
}

.panel-archive .btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.panel-archive .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* --- 一键到顶按钮 --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(20, 20, 26, 0.8);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 20px var(--secondary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   Screen 3: Interactive Drawer (Under Development)
   ========================================================================== */
.panel-drawer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10vh 0 8vh 0;
    /* 减小一点顶部内边距，衔接更紧凑 */
    width: 100vw;
    height: auto;
    min-height: 80vh;
    background: transparent;
    position: relative;
    z-index: 6;
    /* 确保它在 sticky 背景 track 之上，以防重叠渲染问题 */
}

/* 顶部科技感流光线 */
.drawer-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0, 229, 255, 0.03) 40px, rgba(0, 229, 255, 0.03) 80px);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    margin-bottom: 4rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.05) inset;
}

.drawer-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
    margin: 0 3vw;
}

.drawer-header .header-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00e5ff;
    letter-spacing: 0.3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

.warning-icon {
    font-size: 1.4rem;
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {

    0%,
    100% {
        opacity: 0.4;
        text-shadow: none;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
    }
}

/* 赛博网格重构阵列主体 - 升级为横向一行交互式手风琴 */
.drawer-container {
    display: flex;
    flex-direction: row;
    width: 90vw;
    height: 55vh;
    min-height: 400px;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* 一行横向滚动/手风琴效果的高档玻璃卡片 */
.drawer-card {
    flex: 1;
    /* 默认均分宽度 */
    border-radius: 16px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--card-bg);
    /* 复用名片区的高级通透黑科技背景 */
    transition: flex 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    /* 性能优化：告知浏览器此卡片将频繁发生形变，交由 GPU 独立图层处理，同时移除消耗极大的 blur 滤镜防滚动卡顿 */
    will-change: transform, flex;
    transform: translateZ(0);
}

.drawer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    transform: translateY(-2px);
}

.drawer-card:hover {
    flex: 4;
    /* 聚变放大：悬浮时挤开两侧 */
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 229, 255, 0.2),
        inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.drawer-card:hover::before {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 2px 15px var(--secondary-color);
}

.drawer-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    /* 从极黑渐变到透明，提供绝佳的文字底衬 */
    background: linear-gradient(0deg, rgba(5, 5, 8, 1) 0%, rgba(5, 5, 8, 0.7) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 0.8;
    /* 默认就微微显露底部暗角 */
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.5) 50%, transparent 100%);
}

.drawer-card .card-content-wrapper {
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.drawer-card:hover .card-content-wrapper {
    transform: translateY(0);
}

.drawer-card .card-number {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    /* 更大更有冲击力的赛博大字 */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.4;
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 10px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-card:hover .card-number {
    opacity: 0.8;
    color: rgba(0, 229, 255, 0.05);
    -webkit-text-stroke: 1px rgba(0, 229, 255, 0.6);
    transform: scale(1.15) translate(-15px, 15px);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.drawer-card .card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
    white-space: nowrap;
    /* 不换行，适合水平扩张时的展开感 */
}

.drawer-card .card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    opacity: 0;
    /* 默认隐藏文字内容 */
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* 移除截断，允许完整显示，如果过长则内部滚动 */
    max-height: 50vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
}

.drawer-card .card-desc::-webkit-scrollbar {
    width: 4px;
}

.drawer-card .card-desc::-webkit-scrollbar-track {
    background: transparent;
}

.drawer-card .card-desc::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.drawer-card:hover .card-desc {
    opacity: 1;
    /* 展开时淡入 */
    transform: translateY(0);
}

/* ==========================================================================
   Footer (At the bottom of waterfall)
   ========================================================================== */
.site-footer {
    width: 100%;
    padding: 4rem 0 3rem 0;
    margin-top: auto;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.95) 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0, 229, 255, 0.05);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10vw;
    right: 10vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.5;
}

/* 装饰性网格底部 */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.icp-link {
    color: rgba(0, 229, 255, 0.3);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 4px;
    background: rgba(0, 229, 255, 0.02);
}

.icp-link:hover {
    color: var(--secondary-color);
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Mobile Responsive Adjustments for Archive
   ========================================================================== */
@media (max-width: 768px) {

    /* 档案查看面板从右侧抽屉转为底部卡片模式 */
    .panel-archive .info-panel {
        top: auto;
        bottom: 4vh;
        right: 5vw;
        left: 5vw;
        width: 90vw;
        padding: 24px 20px;
        transform: translateY(60px) scale(0.95);
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(20, 20, 26, 0.85) 0%, rgba(8, 8, 12, 0.95) 100%);
    }

    .panel-archive .info-panel.active {
        transform: translateY(0) scale(1);
    }

    /* 优化标题与描述的占比，给上方的3D模型留白 */
    .panel-archive h2#ui-id {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .panel-archive p#ui-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* 限制由于文案过长导致的霸屏 */
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .panel-archive .cta-row {
        gap: 12px;
    }

    .panel-archive .btn {
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    /* 移动端第三屏适配：改为垂直跌落堆叠，防止横排被挤压过度 */
    .drawer-container {
        flex-direction: column;
        height: 70vh;
        gap: 10px;
    }

    .drawer-header {
        margin-bottom: 1rem;
    }

    .drawer-header .header-text {
        font-size: 0.8rem;
    }

    .drawer-card:hover {
        flex: 4;
        /* 手机端给展开后保留相对较少的空间即可 */
    }

    .drawer-card .card-overlay {
        padding: 1.5rem;
    }

    .drawer-card .card-number {
        font-size: 2rem;
    }

    .drawer-card .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .drawer-card .card-desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}