﻿        body {
            margin: 0;
            padding: 0;
            font-family: "Microsoft YaHei", sans-serif;
            background: #1a1a1a;
            color: #fff;
        }

        .header {
            background-image: url('#');
            background-repeat: no-repeat;
            background-position: center top;
            background-size: 100% auto;
            min-height: 200px;
            position: relative;
            width: 100%;
            border: 1px solid #000; /* 添加边框以便于调试 */
        }

        .logo-container {
            position: relative;
            height: 200px;
            padding: 0 150px; /* 增加内边距以适应更大的移动范围 */
        }

        .logo-image {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-200%, -50%); /* 起始位置更远 */
            height: 120px;
            width: auto;
            animation: slideToFront 2s forwards;
            z-index: 0;
        }

        @keyframes slideToFront {
            0% {
                transform: translate(-200%, -50%); /* 起始位置更远 */
                z-index: 0;
            }
            49% {
                transform: translate(-50%, -50%);
                z-index: 0;
            }
            50% {
                transform: translate(-50%, -50%);
                z-index: 2;
            }
            100% {
                transform: translate(calc(-50% - 300px), -50%); /* 最终位置更靠前 */
                z-index: 2;
            }
        }

        .logo-text {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            font-weight: 900;
            font-family: "Microsoft YaHei", "SimHei", sans-serif;
            display: flex;
            gap: 8px;
            z-index: 1;
        }

        .logo-text span {
            position: relative;
            display: inline-block;
            color: transparent;
            background: linear-gradient(to bottom, #fff 0%, #FFD700 50%, #FF4500 100%);
            -webkit-background-clip: text;
            background-clip: text;
            filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.5));
            opacity: 0;
            transform: translateY(50px);
            animation: dropIn 0.6s forwards;
        }

        .logo-text span::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
            transform: skewX(-15deg);
            animation: shimmer 2s infinite;
        }

        .logo-text span:nth-child(1) { animation-delay: 0s; }
        .logo-text span:nth-child(2) { animation-delay: 0.1s; }
        .logo-text span:nth-child(3) { animation-delay: 0.2s; }
        .logo-text span:nth-child(4) { animation-delay: 0.3s; }
        .logo-text span:nth-child(5) { animation-delay: 0.4s; }

        @keyframes dropIn {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            50% {
                opacity: 0.5;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% {
                transform: skewX(-15deg) translateX(-100%);
            }
            100% {
                transform: skewX(-15deg) translateX(100%);
            }
        }

        /* 添加3D效果 */
        .logo-text span {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .logo-text span:hover {
            animation: wobble 0.5s ease-in-out;
        }

        @keyframes wobble {
            0%, 100% { transform: rotateY(0); }
            25% { transform: rotateY(-15deg); }
            75% { transform: rotateY(15deg); }
        }

        /* 修改主容器为三栏布局 */
        .main-container {
            width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 600px 280px; /* 修改为三栏 */
            gap: 20px;
            padding: 20px;
        }

        /* 添加右侧栏样式 */
        .right-sidebar {
            width: 100%;
        }

        /* 排行榜样式 */
        .ranking-section {
            background: #1a0000;
            border: 1px solid #600;
            margin-bottom: 20px;
        }

        .ranking-header {
            background: #400;
            padding: 10px 15px;
            color: #FFD700;
            font-size: 16px;
            font-weight: bold;
        }

        .ranking-list {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .ranking-item {
            padding: 10px 15px;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rank-number {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #8B0000, #400000);
            border: 1px solid #FFD700;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD700;
            font-weight: bold;
        }

        .rank-number.top3 {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #fff;
        }

        .rank-info {
            flex: 1;
        }

        .rank-name {
            color: #fff;
            margin-bottom: 4px;
        }

        .rank-score {
            color: #FFD700;
            font-size: 12px;
        }

        /* 服务器信息样式 */
        .server-info {
            background: #1a0000;
            border: 1px solid #600;
            padding: 15px;
            margin-bottom: 20px;
        }

        .server-info h3 {
            color: #FFD700;
            margin: 0 0 10px 0;
            padding-bottom: 5px;
            border-bottom: 1px solid #600;
        }

        .server-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .server-item {
            padding: 8px 0;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .server-name {
            color: #fff;
        }

        .server-status-tag {
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 12px;
        }

        .status-hot {
            background: #8B0000;
            color: #FFD700;
        }

        .status-new {
            background: #006400;
            color: #fff;
        }

        /* 服务器状态样式优化 */
        .server-status {
            background: linear-gradient(135deg, #1a0000, #400000);
            border: 1px solid #600;
            padding: 15px;
            margin-bottom: 20px;
        }

        .server-status h3 {
            color: #FFD700;
            margin: 0 0 15px 0;
            font-size: 16px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        /* 能量条容器 */
        .energy-bar-container {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid #006400;
            height: 25px;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            margin: 10px 0;
            box-shadow: inset 0 0 10px rgba(0, 100, 0, 0.3);
        }

        /* 能量条 */
        .energy-bar {
            height: 100%;
            background: linear-gradient(90deg, #006400, #00FF00);
            width: 75%;
            position: relative;
            transition: width 1s ease;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
        }

        /* 能量条光效 */
        .energy-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 255, 0, 0.2),
                transparent
            );
            animation: energyShine 2s linear infinite;
        }

        /* 能量值显示 */
        .energy-value {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #00FF00;
            font-size: 12px;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        /* 服务器信息文本 */
        .server-info-text {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            color: #999;
            font-size: 12px;
        }

        /* 下载按钮样式优化 */
        .download-button {
            background: linear-gradient(45deg, #8B0000, #FF0000);
            height: 60px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            border: 1px solid #FFD700;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
        }

        .download-button a {
            display: block;
            width: 100%;
            height: 100%;
            line-height: 60px;
            text-align: center;
            color: #FFD700;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .download-button::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 215, 0, 0.3),
                transparent
            );
            transform: rotate(45deg);
            animation: shine 2s infinite;
        }

        .download-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at center,
                rgba(255, 215, 0, 0.2) 0%,
                transparent 70%
            );
            animation: pulse 2s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        .download-button:hover a {
            color: #FFF;
            text-shadow: 
                0 0 10px #FFD700,
                0 0 20px #FFD700,
                0 0 30px #FFD700;
            letter-spacing: 2px;
        }

        .download-button:hover::after {
            animation: pulse 1s infinite;
        }

        /* 公告区域优化 */
        .announcement-section {
            background: #1a1a1a;
            border: 1px solid #333;
            margin-bottom: 20px;
        }

        .announcement-header {
            background: #400;
            padding: 10px 15px;
            color: #FFD700;
            font-size: 16px;
            font-weight: bold;
        }

        .announcement-list {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .announcement-item {
            padding: 10px 15px;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .announcement-item:last-child {
            border-bottom: none;
        }

        .announcement-item span {
            color: #fff;
        }

        .announcement-date {
            color: #666;
            font-size: 12px;
        }

        .no-announcement {
            color: #666;
            text-align: center;
            padding: 20px 0;
        }

        /* 游戏特色区域优化 */
        .feature-nav {
            background: #1a0000;
            border: 1px solid #600;
            margin: 20px 0;
        }

        .feature-item {
            padding: 15px;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: background 0.3s;
        }

        .feature-item:hover {
            background: #400;
        }

        .feature-item img {
            width: 32px;
            height: 32px;
        }

        /* 游戏截图区域优化 */
        .screenshots-section {
            background: #1a0000;
            border: 1px solid #600;
            padding: 15px;
            margin-top: 20px;
        }

        .screenshots-header {
            color: #FFD700;
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #600;
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .screenshot-grid img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border: 1px solid #600;
        }

        .contact-info {
            background: linear-gradient(135deg, #1a0000, #400000);
            border: 1px solid #FFD700;
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-info h3 {
            color: #FFD700;
            font-size: 18px;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .contact-info p {
            color: #fff;
            margin: 10px 0;
            font-size: 14px;
        }

        /* 二维码容器样式 */
        .qr-code-container {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 15px auto;
            padding: 10px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .qr-code-container:hover {
            transform: scale(1.05);
        }

        /* 二维码图片样式 */
        .qr-code {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* 添加装饰角 */
        .qr-code-container::before,
        .qr-code-container::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid #FFD700;
        }

        .qr-code-container::before {
            top: -5px;
            left: -5px;
            border-right: none;
            border-bottom: none;
        }

        .qr-code-container::after {
            bottom: -5px;
            right: -5px;
            border-left: none;
            border-top: none;
        }

        /* 扫描动画效果 */
        .qr-code-container .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent, #FFD700, transparent);
            animation: scanAnimation 2s linear infinite;
        }

        @keyframes scanAnimation {
            0% {
                top: 0;
            }
            50% {
                top: 100%;
            }
            100% {
                top: 0;
            }
        }

        /* 添加微信标识 */
        .qr-code-label {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFD700;
            color: #8B0000;
            padding: 3px 15px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .main-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 5px;
        }

        .navigation {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 20px;
        }

        .nav-button {
            background: url('#') no-repeat;
            width: 180px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            text-decoration: none;
        }

        .nav-button:hover {
            filter: brightness(1.2);
        }

        /* 添加新的样式 */
        .game-features {
            background: url('#') center/cover;
            padding: 30px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
            border: 2px solid #FFD700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            transform: skew(-5deg);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: skew(-5deg) translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }

        .feature-card img {
            width: 64px;
            height: 64px;
            margin-bottom: 10px;
        }

        .game-screenshots {
            margin: 20px auto;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 5px;
            max-width: 1200px;
        }

        .screenshot-title {
            color: #FFD700;
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .screenshot-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            margin: 10px auto;
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 20px;
            background: linear-gradient(to bottom, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .screenshot-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border: 2px solid #8B0000;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .screenshot-grid img:hover {
            transform: scale(1.05);
            border-color: #FFD700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .section-title {
            color: #FFD700;
            text-align: center;
            margin: 30px 0;
            font-size: 24px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .server-status {
            background: linear-gradient(45deg, #000, #8B0000);
            border: 1px solid #FFD700;
            position: relative;
            overflow: hidden;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .server-status::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                rgba(255, 255, 255, 0.1),
                transparent,
                rgba(255, 255, 255, 0.1)
            );
            animation: shine 2s infinite;
        }

        .online-count {
            color: #00ff00;
            font-weight: bold;
        }

        /* 添加动画效果 */
        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* 添加装饰性元素 */
        .decoration {
            position: fixed;
            pointer-events: none;
            z-index: -1;
        }

        .decoration.top-left {
            top: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background: url('corner-decoration.png') no-repeat;
        }

        .decoration.bottom-right {
            bottom: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: url('corner-decoration.png') no-repeat;
            transform: rotate(180deg);
        }

        .feature-nav {
            max-width: 1200px;
            margin: 20px auto;
            background: linear-gradient(to bottom, #400000, #200000);
            border: 1px solid #FFD700;
            border-radius: 5px;
        }

        .feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-item {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: linear-gradient(to right, rgba(139, 0, 0, 0.5), transparent);
            border-left: 3px solid #FFD700;
        }

        .feature-item img {
            width: 24px;
            height: 24px;
        }

        .feature-item h3 {
            margin: 0;
            font-size: 16px;
            color: #FFD700;
        }

        .feature-item p {
            margin: 5px 0 0;
            font-size: 12px;
            color: #999;
        }

        /* 修改合作伙伴区域样式为QQ联系样式 */
        .qq-contact {
            background: linear-gradient(135deg, #1a0000, #400000);
            border: 1px solid #FFD700;
            padding: 15px;
            margin-top: 20px;
        }

        .qq-contact-header {
            color: #FFD700;
            font-size: 16px;
            margin-bottom: 15px;
            text-align: center;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .qq-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto;
            display: block;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .qq-icon:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
        }

        .qq-number {
            color: #fff;
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
        }

        /* 自助充值标题特效 */
        .recharge-title {
            text-align: center;
            margin: 20px 0;
            position: relative;
            padding: 10px 0;
        }

        .recharge-title span {
            font-size: 20px;
            color: #FFD700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            position: relative;
            display: inline-block;
            background: linear-gradient(to right, #FFD700, #FFA500);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .recharge-title::before,
        .recharge-title::after {
            content: '★';
            color: #FFD700;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            animation: starPulse 1.5s infinite alternate;
        }

        .recharge-title::before {
            left: 20%;
        }

        .recharge-title::after {
            right: 20%;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FF6B00;
            }
            to {
                text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FF6B00;
            }
        }

        @keyframes starPulse {
            from {
                transform: translateY(-50%) scale(1);
                opacity: 0.5;
            }
            to {
                transform: translateY(-50%) scale(1.2);
                opacity: 1;
            }
        }

        /* 修改充值区域的整体布局 */
        .recharge-grid {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            gap: 10px;
        }

        /* 修改充值项目样式 */
        .recharge-item {
            flex: 1;
            background: linear-gradient(135deg, #8B0000, #400000);
            border: 1px solid #FFD700;
            padding: 10px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* 修改充值图标样式 */
        .recharge-item img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 10px;
            display: block;
        }

        /* 修改文字样式 */
        .recharge-item p {
            margin: 0;
            color: #FFD700;
            font-size: 16px;
        }

        /* 添加悬停效果 */
        .recharge-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }

        /* 玩家服务样式 */
        .player-services {
            background: #1a0000;
            border: 1px solid #600;
            margin-bottom: 20px;
        }

        .service-header {
            background: #400;
            padding: 10px 15px;
            color: #FFD700;
            font-size: 16px;
            font-weight: bold;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-item {
            padding: 12px 15px;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: rgba(139, 0, 0, 0.3);
        }

        .service-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #8B0000, #400000);
            border: 1px solid #FFD700;
            border-radius: 4px;
        }

        .service-icon i {
            color: #FFD700;
            font-size: 14px;
        }

        .service-info {
            flex: 1;
        }

        .service-name {
            color: #FFD700;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .service-desc {
            color: #999;
            font-size: 12px;
        }

        /* 修改排行榜样式，让前三名更醒目 */
        .ranking-item.top3 {
            padding: 15px;
            background: linear-gradient(to right, rgba(139, 0, 0, 0.3), transparent);
        }

        .rank-number.top3 {
            width: 32px;
            height: 32px;
            font-size: 18px;
        }

        .rank-number.top3.first {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .rank-number.top3.second {
            background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
        }

        .rank-number.top3.third {
            background: linear-gradient(135deg, #CD7F32, #8B4513);
        }

        .rank-name.top3 {
            font-size: 16px;
            color: #FFD700;
        }

        /* 幻灯片样式 */
        .slideshow-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slideshow-wrapper {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); /* 使用更平滑的过渡效果 */
        }

        .slide {
            min-width: 100%;
            position: relative;
            opacity: 0.8;
            transition: opacity 0.8s ease;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border: 2px solid #8B0000;
        }

        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #FFD700;
            color: #FFD700;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .slide-nav:hover {
            background: rgba(139, 0, 0, 0.8);
        }

        .prev-slide {
            left: 10px;
        }

        .next-slide {
            right: 10px;
        }

        .slide-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #333;
            border: 1px solid #FFD700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-dot.active {
            background: #FFD700;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        @keyframes energyShine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }