```css
/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6B4CFF;
    --primary-light: #9D7BFF;
    --primary-dark: #4A6CF7;
    --bg: #F8F4FF;
    --bg-dark: #1A1A2E;
    --bg-dark-2: #2D2D44;
    --bg-dark-3: #3B2A5E;
    --text: #1A1A2E;
    --text-light: #2D2D44;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --border: #F0E8FF;
    --card-shadow: 0 2px 10px rgba(26, 26, 46, 0.1);
    --card-shadow-hover: 0 5px 20px rgba(26, 26, 46, 0.2);
    --gradient: linear-gradient(135deg, #6B4CFF, #4A6CF7);
    --gradient-dark: linear-gradient(135deg, #1A1A2E, #2D2D44, #3B2A5E);
    --radius: 10px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #12121A;
        --text: #F0F0F0;
        --text-light: #D0D0E0;
        --white: #1E1E2E;
        --border: #2D2D44;
        --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        --card-shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    body {
        background-color: var(--bg);
        color: var(--text);
    }
    
    .anime-card, .detail-section, .character-card, .download-section, .comment-card, .sidebar-widget {
        background: var(--white);
        box-shadow: var(--card-shadow);
    }
    
    .anime-card .name, .character-card .name, .comment-card .username, .sidebar-widget h3, .detail-section h3 {
        color: var(--text);
    }
    
    .anime-card .meta, .character-card .info, .character-card .desc, .comment-card .content, .comment-card .date, .detail-section p, .rank-name, .rank-value, .stat-item .label, .category-list li a {
        color: var(--text-light);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== Header ===== */
.header-top {
    background: var(--gradient-dark);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo h1 {
    font-size: 28px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(107, 76, 255, 0.3);
}

.logo h1 span {
    color: var(--primary-light);
    background: linear-gradient(135deg, #9D7BFF, #6B4CFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    color: #F0F0F0;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-menu ul li a:hover::after {
    width: 60%;
}

/* ===== Main Content ===== */
.main-content {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.content-area {
    flex: 1;
    min-width: 300px;
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 24px;
    color: var(--text);
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== Anime Grid ===== */
.anime-section {
    margin-bottom: 40px;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.anime-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.anime-card:nth-child(1) { animation-delay: 0.05s; }
.anime-card:nth-child(2) { animation-delay: 0.1s; }
.anime-card:nth-child(3) { animation-delay: 0.15s; }
.anime-card:nth-child(4) { animation-delay: 0.2s; }
.anime-card:nth-child(5) { animation-delay: 0.25s; }
.anime-card:nth-child(6) { animation-delay: 0.3s; }
.anime-card:nth-child(7) { animation-delay: 0.35s; }
.anime-card:nth-child(8) { animation-delay: 0.4s; }
.anime-card:nth-child(9) { animation-delay: 0.45s; }
.anime-card:nth-child(10) { animation-delay: 0.5s; }
.anime-card:nth-child(11) { animation-delay: 0.55s; }
.anime-card:nth-child(12) { animation-delay: 0.6s; }

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

.anime-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.anime-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.anime-card:hover img {
    transform: scale(1.05);
}

.anime-card .info {
    padding: 12px;
    position: relative;
}

.anime-card .name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anime-card .meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    line-height: 1.4;
}

.anime-card .rating {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
}

.anime-card .status {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(107, 76, 255, 0.3);
}

/* ===== Detail Section ===== */
.detail-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.detail-section h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
    position: relative;
}

.detail-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.detail-section p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
}

.detail-section .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.detail-section .tag {
    background: var(--border);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: var(--transition);
    cursor: pointer;
}

.detail-section .tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* ===== Character Grid ===== */
.character-section {
    margin-bottom: 40px;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.character-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.character-card:nth-child(1) { animation-delay: 0.05s; }
.character-card:nth-child(2) { animation-delay: 0.1s; }
.character-card:nth-child(3) { animation-delay: 0.15s; }
.character-card:nth-child(4) { animation-delay: 0.2s; }
.character-card:nth-child(5) { animation-delay: 0.25s; }
.character-card:nth-child(6) { animation-delay: 0.3s; }

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.character-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.character-card:hover img {
    transform: scale(1.1);
    border-color: var(--primary);
}

.character-card .name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.character-card .info {
    font-size: 14px;
    color: var(--text-light);
    margin: 5px 0;
}

.character-card .desc {
    font-size: 13px;
    color: var(--text-light);
    text-align: left;
    margin-top: 10px;
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

/* ===== Platform Section ===== */
.platform-section {
    background: var(--gradient-dark);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    color: #F0F0F0;
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 76, 255, 0.3), transparent 70%);
    border-radius: 50%;
}

.platform-section h2 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.platform-section p {
    color: #F0F0F0;
    margin-bottom: 15px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.platform-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.platform-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.platform-feature .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.platform-feature .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.platform-feature .desc {
    font-size: 13px;
    color: #D0D0E0;
    margin-top: 5px;
}

/* ===== Download Section ===== */
.download-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(107, 76, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.download-section h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.download-section p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 76, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 76, 255, 0.4);
    text-decoration: none;
    color: var(--white);
}

.btn-secondary {
    background: var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: #E0D4FF;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== Comments Section ===== */
.comments-section {
    margin-bottom: 40px;
}

.comment-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 5px rgba(26, 26, 46, 0.08);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.comment-card:nth-child(1) { animation-delay: 0.05s; }
.comment-card:nth-child(2) { animation-delay: 0.1s; }
.comment-card:nth-child(3) { animation-delay: 0.15s; }
.comment-card:nth-child(4) { animation-delay: 0.2s; }
.comment-card:nth-child(5) { animation-delay: 0.25s; }
.comment-card:nth-child(6) { animation-delay: 0.3s; }
.comment-card:nth-child(7) { animation-delay: 0.35s; }
.comment-card:nth-child(8) { animation-delay: 0.4s; }
.comment-card:nth-child(9) { animation-delay: 0.45s; }
.comment-card:nth-child(10) { animation-delay: 0.5s; }
.comment-card:nth-child(11) { animation-delay: 0.55s; }
.comment-card:nth-child(12) { animation-delay: 0.6s; }
.comment-card:nth-child(13) { animation-delay: 0.65s; }
.comment-card:nth-child(14) { animation-delay: 0.7s; }
.comment-card:nth-child(15) { animation-delay: 0.75s; }
.comment-card:nth-child(16) { animation-delay: 0.8s; }
.comment-card:nth-child(17) { animation-delay: 0.85s; }
.comment-card:nth-child(18) { animation-delay: 0.9s; }

.comment-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateX(5px);
}

.comment-card .user {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-card .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(107, 76, 255, 0.3);
}

.comment-card .username {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.comment-card .date {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 10px;
    opacity: 0.8;
}

.comment-card .content {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Sidebar ===== */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--card-shadow-hover);
}

.sidebar-widget h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rank-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    gap: 10px;
}

.rank-list li:last-child {
    border-bottom: none;
}

.rank-list li:hover {
    background: var(--border);
    padding-left: 5px;
    border-radius: 4px;
}

.rank-number {
    width: 25px;
    height: 25px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(107, 76, 255, 0.3);
}

.rank-name {
    flex: 1;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-value {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-item {
    background: var(--border);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.02);
}

.stat-item .number {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.stat-item:hover .number {
    color: var(--white);
}

.stat-item .label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    transition: var(--transition);
}

.stat-item:hover .label {
    color: var(--white);
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    font-size: 14px;
    color: var(--text);
    display: block;
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: #F0F0F0;
    padding: 30px 0;
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.footer a {
    color: #B0A0D0;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-links a {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--bg-dark-2);
    padding-top: 20px;
    font-size: 13px;
    color: #D0D0E0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: #B0A0D0;
    margin: 0 8px;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===== Selection ===== */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .sidebar {
        width: 280px;
    }
    
    .anime-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .main-content {
        gap: 20px;
    }
    
    .sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
    
    .platform-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .nav-menu ul {
        justify-content: center;
    }
    
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .anime-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .platform-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .detail-section {
        padding: 15px;
    }
    
    .detail-section img {
        float: none !important;
        margin: 0 auto 15px !important;
        display: block;
    }
}

@media (max-width: 600px) {
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
    
    .nav-menu ul {
        gap: 8px;
    }
    
    .nav-menu ul li a {
        font-size: 13px;
        padding: 3px 8px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .character-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .character-card {
        padding: 15px;
    }
    
    .character-card img {
        width: 80px;
        height: 80px;
    }
    
    .character-card .name {
        font-size: 16px;
    }
    
    .character-card .info {
        font-size: 12px;
    }
    
    .character-card .desc {
        font-size: 12px;
    }
    
    .detail-section {
        padding: 15px;
    }
    
    .detail-section p {
        font-size: 14px;
    }
    
    .download-section {
        padding: 20px;
    }
    
    .download-section img {
        float: none !important;
        margin: 0 auto 15px !important;
        display: block;
        width: 150px;
        height: 150px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    
    .footer-bottom a {
        font-size: 12px;
        margin: 0 5px;
    }
    
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-item .number {
        font-size: 18px;
    }
}

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

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

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* ===== Utility Classes ===== */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

/* ===== Print Styles ===== */
@media print {
    .header-top,
    .sidebar,
    .footer,
    .download-section,
    .platform-section {
        display: none;
    }
    
    .main-content {
        display: block;
    }
    
    .content-area {
        width: 100%;
    }
}
```