* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* 容器样式 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航栏样式 - 音乐主题设计 */
        .navbar {
            background: linear-gradient(135deg, rgba(26, 42, 108, 0.95) 0%, rgba(178, 31, 31, 0.95) 50%, rgba(253, 187, 45, 0.95) 100%);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .nav-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #fdbb2d, #b21f1f);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #fdbb2d;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* 汉堡菜单 */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* 主要内容区域 */
        .main-content {
            margin-top: 80px;
            min-height: calc(100vh - 160px);
        }

        /* 页脚样式 */
        footer {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }

        footer p {
            margin: 0.5rem 0;
        }

        /* 按钮样式 */
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
        }

        /* 标题样式 */
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: #2c3e50;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 2px;
        }

        /* Hero区域样式 */
        .hero {
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(37, 117, 252, 0.85) 100%), 
                        url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        /* 内容区域样式 */
        .section {
            padding: 80px 0;
        }

        /* 网格布局 */
        .events-grid, .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        /* 卡片样式 */
        .event-card, .music-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover, .music-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .event-content, .music-content {
            padding: 25px;
        }

        .event-title, .music-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .event-title a, .music-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .event-title a:hover, .music-title a:hover {
            color: #6a11cb;
        }

        .event-date, .event-location {
            margin-bottom: 10px;
            color: #7f8c8d;
        }

        .event-excerpt {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.6;
        }

        .read-more, .play-link {
            color: #6a11cb;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            margin-top: 10px;
        }

        .read-more:hover, .play-link:hover {
            color: #2575fc;
            transform: translateX(5px);
        }

        /* 音乐图片样式 */
        .music-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .music-card:hover .music-image {
            transform: scale(1.05);
        }

        /* 表单样式 */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: #6a11cb;
            box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* 关于页面样式 */
        .about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }

        .about-content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #34495e;
        }

        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .about-content li {
            margin-bottom: 10px;
            line-height: 1.6;
            position: relative;
            padding-left: 20px;
        }

        .about-content li::before {
            content: '♪';
            position: absolute;
            left: 0;
            color: #6a11cb;
            font-weight: bold;
        }

        /* 详情页面样式 */
        .event-detail-hero, .music-detail-hero {
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(37, 117, 252, 0.85) 100%);
            color: white;
            padding: 140px 0 80px;
            text-align: center;
            margin-bottom: 40px;
        }

        .event-detail-hero h1, .music-detail-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .event-meta, .music-detail-meta {
            font-size: 1.2rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .event-content, .music-detail-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .event-image, .music-detail-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .event-image img, .music-detail-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .event-image:hover img, .music-detail-image:hover img {
            transform: scale(1.03);
        }

        .event-article, .music-detail-info {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .event-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .event-nav-link {
            display: flex;
            align-items: center;
            color: #6a11cb;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .event-nav-link:hover {
            color: #2575fc;
            transform: translateX(5px);
        }

        .back-to-events, .back-to-music {
            color: #7f8c8d;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .back-to-events:hover, .back-to-music:hover {
            color: #6a11cb;
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .event-card, .music-card {
            animation: fadeIn 0.6s ease forwards;
        }

        /* 响应式设计 */
        @media screen and (max-width: 1024px) {
            /* iPad横屏 */
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .events-grid, .music-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
            
            .event-content, .music-detail-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .nav-menu {
                gap: 2rem;
            }
        }

        @media screen and (max-width: 768px) {
            /* iPad竖屏 */
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .events-grid, .music-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .event-card, .music-card {
                margin-bottom: 20px;
            }
            
            .event-navigation {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .event-nav-link {
                justify-content: center;
            }
            
            /* 移动端导航菜单 */
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: linear-gradient(135deg, rgba(26, 42, 108, 0.98) 0%, rgba(178, 31, 31, 0.98) 50%, rgba(253, 187, 45, 0.98) 100%);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 1rem 0;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        }

        @media screen and (max-width: 480px) {
            /* 手机设备 */
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .event-content, .music-content {
                padding: 20px;
            }
            
            .event-title, .music-title {
                font-size: 1.2rem;
            }
            
            .event-detail-hero h1, .music-detail-hero h1 {
                font-size: 2rem;
            }
            
            .event-meta, .music-detail-meta {
                font-size: 1rem;
            }
            
            .event-article, .music-detail-info {
                padding: 20px;
            }
            
            .about-content h2 {
                font-size: 1.8rem;
            }
            
            .about-content h3 {
                font-size: 1.4rem;
            }
            
            .nav-container {
                padding: 0 15px;
            }
        }

        @media screen and (max-width: 360px) {
            /* 小屏手机 */
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .nav-logo {
                font-size: 1.5rem;
            }
        }