/* ========== Cyberpunk Design System ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            background: #0a0a0a;
            color: #d6d3e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ec4899, #22d3ee);
            border-radius: 4px;
        }
        .page-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a0a 0%, #2d1b69 100%);
            border-bottom: 1px solid rgba(34, 211, 238, 0.25);
            box-shadow: 0 4px 40px rgba(236, 72, 153, 0.08);
            position: relative;
            z-index: 50;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            gap: 16px;
        }
        .logo-brand {
            font-size: 1.35rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ec4899, #22d3ee);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            align-items: center;
        }
        .nav-links a {
            color: #ccc8db;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color .25s, text-shadow .25s;
            padding: 4px 2px;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #ec4899, #22d3ee);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s;
        }
        .nav-links a:hover {
            color: #ffffff;
            text-shadow: 0 0 12px rgba(34, 211, 238, 0.7);
        }
        .nav-links a:hover::after {
            transform: scaleX(1);
        }
        h1 {
            font-size: clamp(1.7rem, 4vw, 3rem);
            font-weight: 800;
            text-align: center;
            padding: 20px 0 8px 0;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #ffffff 20%, #ec4899 70%, #22d3ee 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.35;
            word-break: break-word;
        }
        .section {
            padding: 60px 20px;
        }
        .section-alt {
            background: linear-gradient(180deg, #0d0b1a 0%, #191029 100%);
        }
        .sec-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(135deg, #ec4899, #22d3ee);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }
        .sec-title::after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            margin: 14px auto 0;
            background: linear-gradient(90deg, transparent, #22d3ee, #ec4899, transparent);
            border-radius: 4px;
        }
        .neon-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(34, 211, 238, 0.16);
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 0 25px rgba(236, 72, 153, 0.12), 0 0 50px rgba(34, 211, 238, 0.06);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(6px);
            transition: transform .3s, box-shadow .3s;
        }
        .neon-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 60%;
            height: 100%;
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            animation: neonSlide 4s infinite;
            transform: skewX(-15deg);
        }
        .neon-card::after {
            content: '';
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
            animation: neonPulse 3.4s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes neonSlide {
            0% { left: -120%; }
            40% { left: 150%; }
            100% { left: 150%; }
        }
        @keyframes neonPulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.25); opacity: 1; }
        }
        .neon-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 35px rgba(236, 72, 153, 0.25), 0 0 70px rgba(34, 211, 238, 0.15);
            border-color: rgba(34, 211, 238, 0.45);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        @media (max-width: 900px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .header-inner { flex-direction: column; align-items: flex-start; }
            .nav-links { flex-wrap: wrap; }
            .section { padding: 40px 16px; }
        }
        .img-liquid {
            width: 100%;
            max-height: 220px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid rgba(34, 211, 238, 0.18);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            display: block;
        }
        .img-rounded-small {
            width: 110px;
            height: 110px;
            object-fit: cover;
            border-radius: 18px;
            border: 2px solid rgba(34, 211, 238, 0.4);
        }
        .hero-area {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
            padding: 50px 0;
        }
        @media (max-width: 800px) {
            .hero-area { grid-template-columns: 1fr; }
        }
        .hero-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            line-height: 1.2;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #ec4899, #22d3ee);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-tagline {
            font-size: 1.1rem;
            margin-bottom: 24px;
            color: #b9b3d0;
        }
        .btn-glow {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            background: linear-gradient(135deg, #ec4899, #2d1b69);
            color: #fff;
            box-shadow: 0 0 18px rgba(236, 72, 153, 0.5);
            transition: transform .2s, box-shadow .2s;
            border: none;
            cursor: pointer;
        }
        .btn-glow:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 0 34px rgba(34, 211, 238, 0.5);
        }
        .btn-outline {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            background: transparent;
            color: #22d3ee;
            border: 2px solid #22d3ee;
            transition: all .2s;
        }
        .btn-outline:hover {
            background: rgba(34, 211, 238, 0.15);
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
        }
        .stats-number {
            font-size: 2.3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ec4899, #22d3ee);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: block;
            margin-bottom: 6px;
        }
        .stats-label {
            font-size: 0.95rem;
            color: #a29eb8;
        }
        .news-item {
            background: rgba(255, 255, 255, 0.02);
            border-left: 3px solid #ec4899;
            padding: 18px 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 18px;
            transition: background .25s, border-color .25s;
        }
        .news-item:hover {
            background: rgba(34, 211, 238, 0.06);
            border-left-color: #22d3ee;
        }
        .news-item h3 {
            font-size: 1.1rem;
            color: #f0edf8;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .news-date {
            font-size: 0.85rem;
            color: #22d3ee;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .news-summary {
            font-size: 0.93rem;
            color: #b9b3d0;
        }
        .faq-item {
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.025);
            border-radius: 14px;
            border: 1px solid rgba(34, 211, 238, 0.1);
            transition: border-color .2s, box-shadow .2s;
        }
        .faq-item:hover {
            border-color: rgba(236, 72, 153, 0.35);
            box-shadow: 0 0 16px rgba(236, 72, 153, 0.12);
        }
        .faq-q {
            font-weight: 700;
            font-size: 1.02rem;
            margin-bottom: 8px;
            color: #e6e3f0;
        }
        .faq-a {
            font-size: 0.94rem;
            color: #b9b3d0;
        }
        .partner-badge {
            text-align: center;
            padding: 18px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            border: 1px solid rgba(34, 211, 238, 0.12);
            transition: all .25s;
        }
        .partner-badge:hover {
            border-color: #ec4899;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
        }
        .footer-main {
            background: linear-gradient(180deg, #0d0b1a 0%, #09070f 100%);
            border-top: 1px solid rgba(34, 211, 238, 0.15);
            padding: 44px 20px 30px;
            margin-top: 40px;
        }
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            padding-bottom: 24px;
        }
        @media (max-width: 800px) {
            .footer-grid { grid-template-columns: 1fr; }
        }
        .footer-col h4 {
            font-size: 1.05rem;
            margin-bottom: 12px;
            color: #fff;
        }
        .footer-col p {
            font-size: 0.92rem;
            color: #8d89a2;
            margin-bottom: 6px;
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.88rem;
            color: #8d89a2;
        }
        .footer-bottom a {
            color: #22d3ee;
            text-decoration: none;
            margin: 0 6px;
        }
        .footer-bottom a:hover {
            color: #ec4899;
        }
        .tag-highlight {
            display: inline-block;
            background: rgba(236, 72, 153, 0.18);
            color: #ec4899;
            padding: 2px 10px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(236, 72, 153, 0.3);
        }
        .event-item {
            text-align: center;
            padding: 20px;
        }
        .event-item img {
            width: 100%;
            border-radius: 14px;
            max-height: 150px;
            object-fit: cover;
            margin-bottom: 12px;
        }
        .cta-banner {
            background: linear-gradient(135deg, #2d1b69, #101123);
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            border: 1px solid rgba(34, 211, 238, 0.25);
            box-shadow: 0 0 60px rgba(236, 72, 153, 0.2);
        }
        .cta-banner h2 {
            font-size: 2rem;
            margin-bottom: 14px;
        }
        .cta-banner p {
            max-width: 680px;
            margin: 0 auto 28px;
            color: #b9b3d0;
        }
        .gallery-tag {
            font-size: 0.73rem;
            color: #f2ecff;
            background: rgba(45, 27, 105, 0.7);
            padding: 3px 10px;
            border-radius: 20px;
        }