@charset "utf-8";
/*
    Theme Name: 漫画主题
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/
/* 基础样式 */
    <style>
        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #6c757d;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #495057;
        }
        
        /* 深色模式滚动条 */
        .dark ::-webkit-scrollbar-track {
            background: #374151;
        }
        

        
        /* 漫画背景纹理 */
        .comic-bg {
            background-image: url('pic1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        /* 卡片悬停效果 */
        .card-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        /* 按钮悬停效果 */
        .btn-hover {
            transition: all 0.3s ease;
        }
        
        .btn-hover:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px -5px rgba(108, 117, 125, 0.4);
        }
        
        /* 加载动画 */
        .animate-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }
        
        .animate-slide-up {
            animation: slideUp 0.8s ease-out;
        }
        
        /* 响应式字体 */
        @media (max-width: 640px) {
            .text-responsive {
                font-size: 1.125rem;
                line-height: 1.75rem;
            }
        }
        
        @media (min-width: 641px) {
            .text-responsive {
                font-size: 1.25rem;
                line-height: 1.875rem;
            }
        }
        
        @media (min-width: 1024px) {
            .text-responsive {
                font-size: 1.5rem;
                line-height: 2rem;
            }
        }
    </style>