* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            /* 添加背景图片 */
            background-image: url('/static/images/bg1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            /* 保留原有的渐变背景作为备用/叠加 */
            background-image: 
                url('/static/images/bg1.png'),
                radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 20%),
                linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 90%, #0a0a0f 100%);
            /* 添加深色覆盖层，确保文字可读性 */
            position: relative;
            min-height: 100vh;
        }
        
        /* 添加半透明覆盖层，提高文字可读性 */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 15, 0.7);
            z-index: -1;
        }
        
        /* 导航栏样式 */
        .navbar {
            background: rgba(10, 10, 15, 0.95);
            border-bottom: 1px solid rgba(255, 69, 0, 0.3);
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .nav-logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #8b0000, #ff4500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link {
            color: #b0b0b0;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: #ff8c00;
            background: rgba(255, 69, 0, 0.1);
        }
        
        .nav-link.active {
            color: #ff4500;
            background: rgba(255, 69, 0, 0.15);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff4500, transparent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }
        
        .nav-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn {
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-login {
            background: transparent;
            color: #ff8c00;
            border: 1px solid rgba(255, 69, 0, 0.5);
        }
        
        .btn-login:hover {
            background: rgba(255, 69, 0, 0.1);
            border-color: rgba(255, 69, 0, 0.8);
        }
        
        .btn-register {
            background: linear-gradient(45deg, #8b0000, #ff4500);
            color: white;
        }
        
        .btn-register:hover {
            background: linear-gradient(45deg, #9b0000, #ff5500);
            box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            padding: 40px 0;
            position: relative;
        }
        
        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #8b0000, #ff4500, transparent);
            border-radius: 2px;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #8b0000, #ff4500, #ff8c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
        
        /* 幻灯片样式 */
        .slideshow-section {
            margin: 40px 0;
            position: relative;
        }
        
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 69, 0, 0.3);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background-image: url('/static/images/cabal_wallpaper.jpg');
        }
        
        .slide-2 {
            background-image: url('/static/images/cabal_wallpaper77.jpg');
        }
        
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
        }
        
        .slide-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ff8c00;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        }
        
        .slide-desc {
            font-size: 1rem;
            color: #e0e0e0;
            max-width: 600px;
        }
        
        .slide-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slide-dot.active {
            background: #ff4500;
            transform: scale(1.2);
        }
        
        .slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slide-arrow:hover {
            background: rgba(255, 69, 0, 0.7);
        }
        
        .slide-arrow.prev {
            left: 20px;
        }
        
        .slide-arrow.next {
            right: 20px;
        }
        
        .news-section {
            margin-top: 40px;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .section-title {
            font-size: 2rem;
            color: #ff4500;
            position: relative;
            padding-left: 15px;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(to bottom, #8b0000, #ff4500);
            border-radius: 3px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .news-card {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 69, 0, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 69, 0, 0.2);
            border-color: rgba(255, 69, 0, 0.4);
        }
        
        .news-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 69, 0, 0.2);
            background: rgba(30, 30, 40, 0.6);
        }
        
        .news-card h3 {
            color: #ff8c00;
            font-size: 1.4rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .news-date {
            color: #888;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .news-date::before {
            content: '📅';
            margin-right: 5px;
        }
        
        .news-content {
            padding: 20px;
            color: #c0c0c0;
            line-height: 1.6;
        }
        
        .no-news {
            text-align: center;
            padding: 40px;
            font-size: 1.2rem;
            color: #888;
            background: rgba(20, 20, 30, 0.6);
            border-radius: 10px;
            border: 1px dashed rgba(255, 69, 0, 0.3);
        }
        
        .footer {
            margin-top: 60px;
            text-align: center;
            padding: 30px 0;
            color: #666;
            border-top: 1px solid rgba(255, 69, 0, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .slideshow-container {
                height: 300px;
            }
            
            .slide-title {
                font-size: 1.4rem;
            }
            
            .slide-desc {
                font-size: 0.9rem;
            }
            
            .slide-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: rgba(10, 10, 15, 0.95);
                width: 70%;
                height: calc(100vh - 70px);
                transition: 0.3s;
                padding: 20px;
                border-left: 1px solid rgba(255, 69, 0, 0.3);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-item {
                margin: 10px 0;
            }
            
            .nav-actions {
                flex-direction: column;
                margin-top: 20px;
            }
        }