* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'WebFont';
    src: url('WebFont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'WebFont', 'Courier New', monospace;
    background: #5c94fc;
    min-height: 100vh;
    padding: 20px;
    color: #fff;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* 动态背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* 云朵动画 */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: #fff;
    width: 100px;
    height: 40px;
    border-radius: 0;
    box-shadow:
        0 0 0 4px #fff,
        20px 0 0 4px #fff,
        40px 0 0 4px #fff,
        60px 0 0 4px #fff,
        10px -10px 0 4px #fff,
        30px -10px 0 4px #fff,
        50px -10px 0 4px #fff;
    animation: float 60s linear infinite;
    opacity: 0.9;
}

.cloud:nth-child(1) {
    top: 10%;
    animation-duration: 50s;
}

.cloud:nth-child(2) {
    top: 30%;
    animation-duration: 70s;
    animation-delay: -20s;
}

.cloud:nth-child(3) {
    top: 50%;
    animation-duration: 60s;
    animation-delay: -40s;
}

.cloud:nth-child(4) {
    top: 70%;
    animation-duration: 55s;
    animation-delay: -10s;
}

.cloud:nth-child(5) {
    top: 20%;
    animation-duration: 65s;
    animation-delay: -30s;
}

.cloud:nth-child(6) {
    top: 40%;
    animation-duration: 58s;
    animation-delay: -50s;
}

.cloud:nth-child(7) {
    top: 60%;
    animation-duration: 62s;
    animation-delay: -15s;
}

.cloud:nth-child(8) {
    top: 80%;
    animation-duration: 68s;
    animation-delay: -35s;
}

@keyframes float {
    from {
        left: -150px;
    }
    to {
        left: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* 像素风格标题 */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: transparent;
    border: 6px solid #000;
    box-shadow:
        inset -4px -4px 0 0 #d4a000,
        inset 4px 4px 0 0 #ffe84d,
        8px 8px 0 0 #000;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

/* 马里奥角色 - 左侧 */
.mario-character {
    width: 64px;
    height: 64px;
    position: relative;
    animation: marioJump 2s ease-in-out infinite;
    image-rendering: pixelated;
}

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

/* 用CSS像素画绘制马里奥 */
.mario-character::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background:
        /* 第1行 - 帽子顶部 */
        linear-gradient(to right,
            transparent 0, transparent 16px,
            #ff0000 16px, #ff0000 48px,
            transparent 48px),
        /* 第2行 - 帽子 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #ff0000 8px, #ff0000 56px,
            transparent 56px),
        /* 第3行 - 帽子+脸 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #ff0000 8px, #ff0000 16px,
            #8b4513 16px, #8b4513 24px,
            #8b4513 24px, #8b4513 32px,
            #000 32px, #000 40px,
            #8b4513 40px, #8b4513 48px,
            transparent 48px),
        /* 第4行 - 脸+眼睛 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #8b4513 8px, #8b4513 16px,
            #ffcc99 16px, #ffcc99 24px,
            #000 24px, #000 32px,
            #ffcc99 32px, #ffcc99 40px,
            #8b4513 40px, #8b4513 48px,
            transparent 48px),
        /* 第5行 - 脸+鼻子 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #8b4513 8px, #8b4513 16px,
            #ffcc99 16px, #ffcc99 24px,
            #ffcc99 24px, #ffcc99 32px,
            #ffcc99 32px, #ffcc99 40px,
            #8b4513 40px, #8b4513 48px,
            transparent 48px),
        /* 第6行 - 胡子 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #8b4513 8px, #8b4513 24px,
            #ffcc99 24px, #ffcc99 40px,
            #8b4513 40px, #8b4513 56px,
            transparent 56px),
        /* 第7行 - 衣服 */
        linear-gradient(to right,
            transparent 0, transparent 16px,
            #ff0000 16px, #ff0000 24px,
            #0000ff 24px, #0000ff 32px,
            #ff0000 32px, #ff0000 40px,
            #0000ff 40px, #0000ff 48px,
            transparent 48px),
        /* 第8行 - 衣服+手 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #ffcc99 8px, #ffcc99 16px,
            #ff0000 16px, #ff0000 24px,
            #0000ff 24px, #0000ff 40px,
            #ff0000 40px, #ff0000 48px,
            #ffcc99 48px, #ffcc99 56px,
            transparent 56px);
    background-size: 64px 8px;
    background-position: 0 0, 0 8px, 0 16px, 0 24px, 0 32px, 0 40px, 0 48px, 0 56px;
    background-repeat: no-repeat;
}

/* 公主角色 - 右侧 */
.princess-character {
    width: 64px;
    height: 64px;
    position: relative;
    animation: princessFloat 3s ease-in-out infinite;
    image-rendering: pixelated;
}

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

/* 用CSS像素画绘制公主 */
.princess-character::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background:
        /* 第1行 - 皇冠 */
        linear-gradient(to right,
            transparent 0, transparent 24px,
            #ffd700 24px, #ffd700 32px,
            transparent 32px, transparent 40px),
        /* 第2行 - 皇冠 */
        linear-gradient(to right,
            transparent 0, transparent 16px,
            #ffd700 16px, #ffd700 24px,
            #ffd700 24px, #ffd700 32px,
            #ffd700 32px, #ffd700 40px,
            #ffd700 40px, #ffd700 48px,
            transparent 48px),
        /* 第3行 - 头发 */
        linear-gradient(to right,
            transparent 0, transparent 16px,
            #ffb347 16px, #ffb347 48px,
            transparent 48px),
        /* 第4行 - 头发+脸 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #ffb347 8px, #ffb347 16px,
            #ffcc99 16px, #ffcc99 48px,
            #ffb347 48px, #ffb347 56px,
            transparent 56px),
        /* 第5行 - 脸+眼睛 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #ffb347 8px, #ffb347 16px,
            #ffcc99 16px, #ffcc99 24px,
            #000 24px, #000 32px,
            #ffcc99 32px, #ffcc99 40px,
            #000 40px, #000 48px,
            #ffb347 48px, #ffb347 56px,
            transparent 56px),
        /* 第6行 - 脸 */
        linear-gradient(to right,
            transparent 0, transparent 16px,
            #ffcc99 16px, #ffcc99 48px,
            transparent 48px),
        /* 第7行 - 裙子上部 */
        linear-gradient(to right,
            transparent 0, transparent 8px,
            #ff69b4 8px, #ff69b4 56px,
            transparent 56px),
        /* 第8行 - 裙子下部 */
        linear-gradient(to right,
            transparent 0, transparent 0px,
            #ff69b4 0px, #ff69b4 64px,
            transparent 64px);
    background-size: 64px 8px;
    background-position: 0 0, 0 8px, 0 16px, 0 24px, 0 32px, 0 40px, 0 48px, 0 56px;
    background-repeat: no-repeat;
}

/* 爱心装饰 */
.heart-decoration {
    display: flex;
    gap: 8px;
    align-items: center;
}

.heart {
    width: 24px;
    height: 24px;
    position: relative;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* 用CSS像素画绘制爱心 */
.heart::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background:
        /* 第1行 */
        linear-gradient(to right,
            transparent 0, transparent 6px,
            #ff0066 6px, #ff0066 12px,
            transparent 12px, transparent 18px,
            #ff0066 18px, #ff0066 24px),
        /* 第2行 */
        linear-gradient(to right,
            #ff0066 0, #ff0066 18px,
            transparent 18px, transparent 24px,
            #ff0066 24px),
        /* 第3行 */
        linear-gradient(to right,
            #ff0066 0, #ff0066 24px),
        /* 第4行 */
        linear-gradient(to right,
            transparent 0, transparent 3px,
            #ff0066 3px, #ff0066 21px,
            transparent 21px),
        /* 第5行 */
        linear-gradient(to right,
            transparent 0, transparent 6px,
            #ff0066 6px, #ff0066 18px,
            transparent 18px),
        /* 第6行 */
        linear-gradient(to right,
            transparent 0, transparent 9px,
            #ff0066 9px, #ff0066 15px,
            transparent 15px);
    background-size: 24px 4px;
    background-position: 0 0, 0 4px, 0 8px, 0 12px, 0 16px, 0 20px;
    background-repeat: no-repeat;
}

.title {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin: 0;
    color: #ff0000;
    font-weight: bold;
    flex: 1;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 2px;
    color: #000;
}

/* 卡片样式 */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #f8d878;
    border: 6px solid #000;
    box-shadow:
        inset -4px -4px 0 0 #c8a858,
        inset 4px 4px 0 0 #fff8d8,
        8px 8px 0 0 #000;
    transition: transform 0.2s;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translate(-2px, -2px);
    box-shadow:
        inset -4px -4px 0 0 #c8a858,
        inset 4px 4px 0 0 #fff8d8,
        10px 10px 0 0 #000;
}

.card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #c8a858 0px,
        #c8a858 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
}

.card-header {
    background: #ff6b6b;
    padding: 15px 20px;
    border-bottom: 6px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        inset -3px -3px 0 0 #d84848,
        inset 3px 3px 0 0 #ff9999;
}

.card-header h2 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
}

.refresh-btn {
    background: #4caf50;
    border: 4px solid #000;
    padding: 8px 16px;
    font-family: 'WebFont', 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    box-shadow:
        inset -2px -2px 0 0 #2e7d32,
        inset 2px 2px 0 0 #81c784,
        4px 4px 0 0 #000;
    transition: all 0.1s;
}

.refresh-btn:hover {
    background: #66bb6a;
    transform: translate(-1px, -1px);
    box-shadow:
        inset -2px -2px 0 0 #2e7d32,
        inset 2px 2px 0 0 #81c784,
        5px 5px 0 0 #000;
}

.refresh-btn:active {
    transform: translate(3px, 3px);
    box-shadow:
        inset -2px -2px 0 0 #2e7d32,
        inset 2px 2px 0 0 #81c784,
        1px 1px 0 0 #000;
}

.card-body {
    padding: 20px;
    color: #000;
    min-height: 150px;
    width: 100%;
    overflow: hidden;
    background: #f8d878;
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #666;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* 错误状态 */
.error {
    color: #e74c3c;
    padding: 20px;
    text-align: center;
    border: 3px dashed #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* 任务列表样式 */
.task-list {
    list-style: none;
}

.task-item {
    padding: 12px;
    margin-bottom: 10px;
    background: #fff;
    border: 4px solid #000;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow:
        inset -2px -2px 0 0 #ccc,
        inset 2px 2px 0 0 #fff,
        4px 4px 0 0 #000;
    position: relative;
    padding-left: 40px;
}

.task-item::before {
    content: '★';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 12px;
    font-size: 1.2rem;
}

/* 图片样式 */
.content-image {
    max-width: calc(100% - 8px);
    width: calc(100% - 8px);
    height: auto;
    border: 6px solid #000;
    cursor: pointer;
    transition: transform 0.2s;
    display: block;
    margin: 10px auto;
    object-fit: contain;
    box-sizing: content-box;
    box-shadow: 6px 6px 0 0 #000;
}

.content-image:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 0 #000;
}

/* 图片画廊样式 */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    box-sizing: border-box;
}

/* 搜索框样式 */
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-field {
    flex: 1;
    padding: 10px 15px;
    border: 4px solid #000;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    background: #fff;
    box-shadow:
        inset 3px 3px 0 0 #ccc,
        4px 4px 0 0 #000;
}

.input-field:focus {
    outline: none;
    border-color: #000;
    box-shadow:
        inset 3px 3px 0 0 #2196f3,
        4px 4px 0 0 #000;
}

/* 任务文本样式 */
.task-text {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-left: 4px solid #667eea;
    margin-bottom: 15px;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 任务合集样式 */
.task-collection-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 15px;
    background: #2196f3;
    border: 6px solid #000;
    margin-bottom: 15px;
    box-shadow:
        inset -3px -3px 0 0 #1565c0,
        inset 3px 3px 0 0 #64b5f6,
        6px 6px 0 0 #000;
}

.image-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.image-cell {
    padding: 10px;
    border: 6px solid #000;
    background: #fff;
    text-align: center;
    vertical-align: top;
    box-shadow:
        inset -3px -3px 0 0 #ccc,
        inset 3px 3px 0 0 #fff;
}

.image-desc {
    font-weight: bold;
    color: #2196f3;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.table-image {
    margin: 0 auto;
}

.info-section {
    margin: 15px 0;
    border: 6px solid #000;
    background: #fff;
    box-shadow: 6px 6px 0 0 #000;
}

.info-title {
    background: #9c27b0;
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow:
        inset -2px -2px 0 0 #6a1b9a,
        inset 2px 2px 0 0 #ba68c8;
}

.info-content {
    padding: 15px;
    line-height: 1.8;
    color: #000;
}

.update-time {
    text-align: right;
    color: #666;
    font-size: 0.85rem;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 4px dashed #000;
}

/* 季节信息样式 */
.season-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 15px;
    background: #ff6b6b;
    border: 6px solid #000;
    margin-bottom: 15px;
    box-shadow:
        inset -3px -3px 0 0 #d84848,
        inset 3px 3px 0 0 #ff9999,
        6px 6px 0 0 #000;
}

.countdown-box {
    background: #4caf50;
    color: #fff;
    padding: 20px;
    text-align: center;
    border: 6px solid #000;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: bold;
    box-shadow:
        inset -3px -3px 0 0 #2e7d32,
        inset 3px 3px 0 0 #81c784,
        6px 6px 0 0 #000;
}

.section-title {
    font-weight: bold;
    color: #fff;
    background: #ff9800;
    padding: 10px;
    margin: 15px 0 10px 0;
    border: 4px solid #000;
    box-shadow:
        inset -2px -2px 0 0 #e65100,
        inset 2px 2px 0 0 #ffb74d,
        4px 4px 0 0 #000;
}

.season-info {
    display: grid;
    gap: 8px;
}

.info-item {
    padding: 10px;
    background: #fff;
    border: 4px solid #000;
    font-size: 0.95rem;
    box-shadow:
        inset -2px -2px 0 0 #ccc,
        inset 2px 2px 0 0 #fff,
        3px 3px 0 0 #000;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #fff;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.5); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ffd700;
}

/* 数据展示样式 */
.data-item {
    padding: 10px;
    margin-bottom: 8px;
    background: #fff;
    border: 4px solid #000;
    box-shadow:
        inset -2px -2px 0 0 #ccc,
        inset 2px 2px 0 0 #fff,
        3px 3px 0 0 #000;
}

.data-label {
    font-weight: bold;
    color: #ff6b6b;
    margin-right: 8px;
}
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 20px;
    background: #fbd000;
    border: 6px solid #000;
    margin-top: 40px;
    box-shadow:
        inset -4px -4px 0 0 #d4a000,
        inset 4px 4px 0 0 #ffe84d,
        8px 8px 0 0 #000;
}

.footer p {
    font-size: 0.9rem;
    color: #000;
    font-weight: bold;
}

/* 生成时间 */
.generated-time {
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 0.85rem;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid #000;
    font-weight: bold;
    box-shadow: 4px 4px 0 0 #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
}

/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .header {
        padding: 20px 10px;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }

    .heart-decoration {
        flex-direction: row;
        gap: 5px;
    }

    .mario-character,
    .princess-character {
        width: 48px;
        height: 48px;
    }

    .mario-character::before,
    .princess-character::before {
        width: 48px;
        height: 48px;
        background-size: 48px 6px;
        background-position: 0 0, 0 6px, 0 12px, 0 18px, 0 24px, 0 30px, 0 36px, 0 42px;
    }

    .heart {
        width: 20px;
        height: 20px;
    }

    .heart::before {
        width: 20px;
        height: 20px;
        background-size: 20px 3px;
        background-position: 0 0, 0 3px, 0 6px, 0 9px, 0 12px, 0 15px;
    }

    .main-content {
        gap: 20px;
        max-width: 100%;
    }

    .card-header {
        padding: 12px 15px;
    }

    .card-header h2 {
        font-size: 1.1rem;
    }

    .refresh-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .card-body {
        padding: 15px;
    }

    .task-item {
        font-size: 0.9rem;
        padding: 10px;
    }

    .close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .content-image {
        max-width: calc(100% - 8px);
        width: calc(100% - 8px);
    }

    .search-box {
        flex-direction: column;
    }

    .input-field {
        width: 100%;
    }

    .season-title {
        font-size: 1.1rem;
        padding: 12px;
    }

    .countdown-box {
        font-size: 1rem;
        padding: 15px;
    }

    .task-text {
        font-size: 0.9rem;
        padding: 12px;
    }

    /* 移动端表格样式 */
    .image-table {
        display: block;
        overflow-x: auto;
    }

    .image-table tr {
        display: flex;
        flex-direction: column;
    }

    .image-cell {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .task-collection-title {
        font-size: 1rem;
        padding: 10px;
    }

    .info-title {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    .info-content {
        font-size: 0.9rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }

    .card {
        box-shadow:
            0 0 0 3px rgba(255, 255, 255, 0.3),
            6px 6px 0 0 rgba(0, 0, 0, 0.3);
    }

    .card:hover {
        box-shadow:
            0 0 0 3px rgba(255, 255, 255, 0.3),
            8px 8px 0 0 rgba(0, 0, 0, 0.3);
    }

    .content-image {
        border: 3px solid #333;
        max-width: calc(100% - 6px);
        width: calc(100% - 6px);
    }

    .card-body {
        padding: 10px;
    }

    .image-gallery {
        gap: 8px;
    }
}
