/* 基础样式 */
:root {
    --primary-color: #2d5016;
    --primary-light: #3d6b1e;
    --primary-glow: rgba(45, 80, 22, 0.15);
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f6f3;
    --bg-cream: #f5f3ed;
    --border-color: #e5e0d8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(45, 80, 22, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* 滚动进度条 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* 淡入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 25px 8px var(--primary-glow); }
}

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* 滚动动画类 */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 导航栏 */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 1.35em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-gray);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    font-size: 0.95em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* 响应式导航 */
@media (max-width: 600px) {
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    .nav-menu.active { display: flex; }
    .nav-link {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
    }
}

/* 主内容区 */
.main-content {
    min-height: calc(100vh - 160px);
}

/* 英雄区 */
.hero {
    padding: 100px 24px;
    text-align: center;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.4em;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.hero p {
    font-size: 1.1em;
    opacity: 0.92;
    margin-bottom: 8px;
}

/* 按钮 */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

/* 通用区块 */
.section {
    padding: 72px 24px;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    text-align: center;
    font-size: 1.7em;
    color: var(--primary-color);
    margin-bottom: 48px;
    font-weight: 600;
    letter-spacing: 2px;
}

.bg-light {
    background: var(--bg-light);
}

/* 六经辨证 */
.six-jing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jing-item {
    background: linear-gradient(145deg, #ffffff, #f8faf5);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.jing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #5a8f2a);
    opacity: 0;
    transition: var(--transition);
}

.jing-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(45, 80, 22, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.jing-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary-color);
}

.jing-item:hover::before {
    opacity: 1;
}

.jing-item:hover::after {
    opacity: 1;
}

.jing-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.25em;
    font-weight: 600;
    transition: var(--transition);
}

.jing-item:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 2px 8px var(--primary-glow);
}

.jing-item p {
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.7;
}

.jing-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-glow), rgba(90, 143, 42, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(45, 80, 22, 0.15);
    transition: var(--transition);
}

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

@media (max-width: 600px) {
    .six-jing { grid-template-columns: 1fr; gap: 16px; }
    .section { padding: 48px 16px; }
}

/* 文章列表 */
.article-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-item {
    background: var(--bg-white);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease-out;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.article-date {
    color: var(--text-light);
    font-size: 0.85em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-item h3 {
    margin: 8px 0;
}

.article-item h3 a {
    color: var(--text-dark);
    font-weight: 600;
}

.article-item h3 a:hover {
    color: var(--primary-color);
}

.article-item p {
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.7;
}

/* 分类列表 */
.category-list {
    max-width: 800px;
    margin: 0 auto;
}

.category-item {
    background: var(--bg-white);
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item h3 {
    color: var(--primary-color);
    font-size: 1.15em;
}

.category-item span {
    color: var(--text-light);
}

/* 文章详情页头部 */
.article-header {
    background: linear-gradient(135deg, var(--primary-color), #1a3d0c);
    color: white;
    padding: 72px 24px;
    text-align: center;
}

.article-header h1 {
    font-size: 1.9em;
    max-width: 700px;
    margin: 0 auto 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-meta {
    color: rgba(255,255,255,0.8);
    font-size: 0.95em;
}

.article-body {
    background: var(--bg-white);
    padding: 56px 36px;
    max-width: 800px;
    margin: -36px auto 0;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-md);
}

.article-body h2 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.article-body h3 {
    color: var(--text-dark);
    font-size: 1.2em;
    margin: 28px 0 14px;
}

.article-body p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.9;
}

.article-body ul, .article-body ol {
    margin: 16px 0 22px 28px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    background: linear-gradient(135deg, #f8faf5, #f0f4eb);
    border-left: 4px solid var(--primary-color);
    padding: 18px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-gray);
    font-style: italic;
}

.shanghan-article {
    background: linear-gradient(145deg, #ffffff, #fafcf8);
    padding: 28px 32px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease-out;
}

.shanghan-article:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.article-title {
    color: var(--primary-color);
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.shanghan-article p {
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 600px) {
    .article-body {
        padding: 32px 20px;
        margin: -20px 16px 0;
    }
    .article-header h1 { font-size: 1.5em; }
    .article-item { padding: 20px; }
}

/* 关于页面 */
.about-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px;
}

.about-content h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.9em;
    margin-bottom: 36px;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 22px;
    color: var(--text-gray);
    text-align: justify;
    font-size: 1.05em;
    line-height: 1.9;
}

/* 联系页面 */
.contact-content {
    max-width: 520px;
    margin: 0 auto;
    padding: 56px 24px;
    text-align: center;
}

.contact-content h1 {
    color: var(--primary-color);
    margin-bottom: 32px;
    font-size: 1.8em;
}

.contact-email {
    background: var(--bg-white);
    padding: 44px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-email h2 {
    color: var(--text-dark);
    margin-bottom: 22px;
    font-size: 1.2em;
}

.contact-email a {
    font-size: 1.3em;
    color: var(--primary-color);
    word-break: break-all;
    font-weight: 500;
}

/* 页脚 */
.footer {
    background: linear-gradient(180deg, #1a2e0d, #0f1a06);
    color: rgba(255,255,255,0.65);
    text-align: center;
    padding: 44px 24px 32px;
    margin-top: auto;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.disclaimer {
    font-size: 0.82em !important;
    opacity: 0.5;
}

.footer .btn-outline {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.35);
    margin-bottom: 24px;
}

.footer .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
}

.pagination a, .pagination span {
    padding: 9px 16px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-gray);
    font-size: 0.95em;
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==================== 新增美化样式 ==================== */

/* 背景装饰元素 */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #5a8f2a, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s ease-in-out infinite;
}

.bg-line {
    position: absolute;
    background: linear-gradient(var(--primary-color), transparent);
    opacity: 0.03;
}

.bg-line-1 {
    width: 2px;
    height: 400px;
    top: 10%;
    left: 15%;
    transform: rotate(15deg);
}

.bg-line-2 {
    width: 2px;
    height: 300px;
    bottom: 20%;
    right: 20%;
    transform: rotate(-20deg);
}

/* 英雄区增强 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 35, 10, 0.85), rgba(20, 50, 15, 0.9)), 
                url('https://raw.githubusercontent.com/ME888888/blog/main/imgs/bamboo_bg.jpg') center/cover no-repeat;
    margin-top: 0;
    padding: 0 24px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(90, 143, 42, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

/* 头像样式 */
.hero-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
}

.avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: gentlePulse 4s ease-in-out infinite;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(90, 143, 42, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentlePulse 4s ease-in-out infinite;
    z-index: -1;
}

/* 主标题 */
.hero-title {
    background: linear-gradient(135deg, #ffffff, #a8d08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    background: linear-gradient(135deg, #ffffff 0%, #d4e6b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 按钮样式 */
.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.25));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 1.1em;
    border: 1.5px solid rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transition: var(--transition);
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.35));
    border-color: rgba(255,255,255,0.6);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(5px);
}

/* 滚动指示器 */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85em;
    animation: fadeIn 2s ease-out;
}

.scroll-arrow {
    animation: float 2s ease-in-out infinite;
}

/* 标题装饰 */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.title-deco {
    color: var(--primary-color);
    opacity: 0.4;
    font-size: 0.8em;
}

/* 六经图标 */
.jing-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.jing-item:hover .jing-icon {
    transform: scale(1.2) rotate(10deg);
}

/* 音乐控制 */
.music-control {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    animation: fadeIn 1.5s ease-out;
}

.music-inner {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(45, 80, 22, 0.1);
    transition: var(--transition);
}

.music-inner:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.music-icon {
    font-size: 20px;
    animation: gentlePulse 2s ease-in-out infinite;
}

.music-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

/* Footer 增强 */
.footer-content {
    padding: 20px 0 30px;
}

.footer-logo {
    font-size: 2.5em;
    margin-bottom: 16px;
    animation: gentlePulse 4s ease-in-out infinite;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    font-size: 1em !important;
    margin-bottom: 8px !important;
}

/* Logo 样式增强 */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.5em;
    animation: gentlePulse 4s ease-in-out infinite;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
}

/* 响应式增强 */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2em !important; letter-spacing: 4px !important; }
    .hero-subtitle { font-size: 1.1em !important; letter-spacing: 6px !important; }
    .hero-desc { font-size: 0.9em !important; white-space: normal !important; }
    .hero-avatar { width: 110px; height: 110px; }
    .btn-hero { padding: 14px 32px; font-size: 1em; }
    .music-control { bottom: 16px; right: 16px; }
    .title-deco { display: none; }
}

@media (max-width: 480px) {
    .hero { min-height: 90vh; }
    .hero-title { font-size: 1.8em !important; }
    .hero-avatar { width: 90px; height: 90px; }
}
