        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #fff;
            min-height: 100vh;
            padding-bottom: 50px;
        }

        /* 下拉菜单样式 */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #020202;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* 确保导航栏链接样式一致 */
        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
        }

        .logo span {
            color: #6c5ce7;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: #6c5ce7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .page-header {
            text-align: center;
            margin: 110px 0px 40px 0px;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-subtitle {
            color: #d8d8d8;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #6c5ce7;
        }

        .search-box {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        .search-input {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            padding: 12px 20px;
            border-radius: 30px;
            color: white;
            width: 100%;
            max-width: 400px;
            font-size: 1rem;
        }

        .search-input:focus {
            outline: 2px solid #6c5ce7;
        }

        .concerts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .concert-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .concert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .concert-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .concert-info {
            padding: 20px;
        }

        .concert-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .concert-artist {
            color: #a29bfe;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .concert-date {
            color: #d8d8d8;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .concert-location {
            color: #b0b0b0;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .concert-series {
            display: inline-block;
            background: rgba(108, 92, 231, 0.2);
            color: #a29bfe;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .concert-desc {
            color: #b0b0b0;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .concert-actions {
            display: flex;
            justify-content: space-between;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #6c5ce7;
            color: white;
        }

        .btn-primary:hover {
            background: #5649c9;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 50px 0;
            text-align: center;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 15px;
            min-width: 150px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #6c5ce7;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #d8d8d8;
        }

        .no-results {
            text-align: center;
            grid-column: 1 / -1;
            padding: 40px;
            color: #b0b0b0;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .page-title {
                font-size: 2.2rem;
            }

            .stats {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .stat-item {
                width: 100%;
                max-width: 250px;
            }

            .concert-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                justify-content: center;
            }
        }

        .footer {
            text-align: center;
            margin-top: 80px;
            padding: 30px;
            color: #d8d8d8;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }