       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        :root {
            --primary-color: #900;
            --secondary-color: #ffcc00;
            --dark-bg: #111;
            --medium-bg: #222;
            --light-bg: #333;
            --text-color: #fff;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23111"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23333" stroke-width="1"/></svg>');
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            min-width: 1200px;
            overflow-x: auto;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
            padding: 1 15px;
        }
        
        header {
            background: linear-gradient(to right, var(--primary-color), #700);
            color: var(--text-color);
            padding: 20px 0;
            text-align: center;
            border-bottom: 3px solid var(--secondary-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            width: 1200px;
            margin: 0 auto;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="transparent"/><path d="M20,20 L80,80 M80,20 L20,80" stroke="%23ffcc0040" stroke-width="2"/></svg>');
            opacity: 0.3;
        }
        
        header h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            margin-bottom: 10px;
            position: relative;
            letter-spacing: 2px;
        }
        
        header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .main-content {
            display: flex;
            margin: 25px 0;
            gap: 20px;
            align-items: stretch;
            width: 1200px;
            margin: 25px auto;
        }
        
        .server-info {
            width: 320px;
            background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
            padding: 10px;
            border: 2px solid var(--secondary-color);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            height: 370px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .server-info h2 {
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--secondary-color);
            font-size: 1.5rem;
        }
        
        .server-table {
            width: 100%;
            border-collapse: collapse;
            flex-grow: 1;
            overflow-y: auto;
        }
        
        .server-table th, .server-table td {
            border: 1px solid #444;
            padding: 12px;
            text-align: center;
        }
        
        .server-table th {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .server-table tr {
            transition: var(--transition);
        }
        
        .server-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .server-table tr:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        
        .status-hot {
            color: #ff4757;
            font-weight: bold;
        }
        
        .status-new {
            color: #2ed573;
            font-weight: bold;
        }
        
        .status-normal {
            color: #dfe4ea;
        }
        
        .status-rec {
            color: #3742fa;
            font-weight: bold;
        }
        
        .carousel-container {
            width: 520px;
            display: flex;
            flex-direction: column;
            height: 370px;
            flex-shrink: 0;
        }
        
        .carousel {
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--secondary-color);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            flex-grow: 1;
        }
        
        .carousel-inner {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .carousel-item {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        
        .carousel-item.active {
            opacity: 1;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            text-align: center;
        }
        
        .carousel-caption h3 {
            color: var(--secondary-color);
            margin-bottom: 8px;
            font-size: 1.5rem;
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .carousel-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
        }
        
        .download-section {
            width: 320px;
            background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
            padding: 10px;
            border: 2px solid var(--secondary-color);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            height: 370px;
            flex-shrink: 0;
        }
        
        .download-section h2 {
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--secondary-color);
            font-size: 1.5rem;
        }
        
        .download-buttons {
            display: flex;
            flex-direction: column;
            flex-grow: 0;
            justify-content: center;
            gap: 18px;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--primary-color), #a00);
            color: var(--text-color);
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        
        .download-btn i {
            margin-right: 10px;
        }
        
        .download-btn:hover {
            background: linear-gradient(to right, #a00, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
        }
        
        .download-btn:active {
            transform: translateY(0);
        }
        
        .section-title {
            color: var(--secondary-color);
            text-align: center;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .classes-section {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            gap: 20px;
            width: 1200px;
            margin: 0 auto 40px;
        }
        
        .class-card {
            width: 280px;
            background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
            border: 2px solid #444;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            height: 395px;
        }
        
        .class-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            */border-color: var(--secondary-color);*/
        }
        
        .class-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #1a1a1a;
            position: relative;
        }
        
        .class-image img {
            width: 264px;
            height: 385px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .class-card:hover .class-image img {
            transform: scale(1.00);
        }
        
        .class-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 15px;
            text-align: center;
            color: var(--secondary-color);
            font-size: 1.6rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        .guide-section, .events-section {
            background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
            padding: 25px;
            margin-bottom: 40px;
            border: 2px solid #444;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            width: 1200px;
            margin: 0 auto 40px;
        }
        
        .guide-list, .events-list {
            list-style-type: none;
        }
        
        .guide-list li, .events-list li {
            padding: 15px;
            border-bottom: 1px solid #444;
            transition: var(--transition);
        }
        
        .guide-list li:hover, .events-list li:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .guide-list li:last-child, .events-list li:last-child {
            border-bottom: none;
        }
        
        .guide-list strong, .events-list strong {
            color: var(--secondary-color);
        }
        
        .bottom-download {
            text-align: center;
            margin: 40px 0;
            width: 1200px;
            margin: 40px auto;
        }
        
        .bottom-download .download-btn {
            display: inline-flex;
            width: auto;
            padding: 18px 50px;
            font-size: 1.2rem;
        }
        
        footer {
            text-align: center;
            padding: 30px;
            background: linear-gradient(to right, var(--primary-color), #700);
            color: var(--text-color);
            margin-top: auto;
            width: 1200px;
            margin: 0 auto;
        }
        
        footer p {
            margin: 5px 0;
        }
        
        /* 禁用响应式设计 */
        body {
            overflow-x: auto;
        }
        
        .container, header, .main-content, .classes-section, 
        .guide-section, .events-section, .bottom-download, footer {
            min-width: 1200px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }
        th {
            padding: 12px;
            text-align: center;
            background-color: #700;
            border: 1px solid #ddd;
        }
        td {
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
            word-break: break-word;
        }
        .col1 { width: 25%; }
        .col2 { width: 25%; }
        .col3 { width: 25%; }
        .col4 { width: 25%; }
