/* ========================================
   龙珠魔兽 - 页面美观度优化样式 (修复版)
   仅用于 index2.html
   ======================================== */

/* 全局优化 */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #f5f7fa;
    max-width: 100vw;
    overflow-x: hidden;
}

/* 导航栏优化 - 增大字体 */
.header-area {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-area.sticky-menu {
    background-color: rgba(15, 25, 40, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
}

.main-menu nav .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.main-menu nav .nav a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 14px 26px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.main-menu nav .nav a:hover,
.main-menu nav .nav a:focus {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
}

/* Hero 区域优化 - 修复标题排版 */
.game-hero-area {
    position: relative;
}

.game-hero-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 15, 30, 0.5) 0%, rgba(0, 30, 60, 0.3) 100%);
    z-index: 1;
}

.game-hero-area .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h2 {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
    display: block;
    width: 100%;
    position: relative;
    /* 金色渐变文字 */
    background: linear-gradient(
        135deg,
        #ffd700 0%,
        #ffed4e 25%,
        #fff8a0 50%,
        #ffed4e 75%,
        #ffd700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* 多层发光阴影 */
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5))
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.3))
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.2))
            drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
    animation: shine 3s linear infinite, float 4s ease-in-out infinite;
}

/* 文字流光动画 */
@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* 轻微浮动动画 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* 文字背后装饰光环 */
.hero-content h2::before {
    content: '龙珠魔兽';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0.25em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 215, 0, 0.3);
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* 移除原模板的 glitch 特效 */
.game-hero-area .hero-content h2::after {
    display: none !important;
    content: none !important;
    animation: none !important;
}

.hero-subtitle {
    font-size: 22px;
    letter-spacing: 0.15em;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    display: block;
    padding: 14px 35px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 35px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    margin-top: 10px;
}

.scrl_me_down {
    z-index: 10;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scrl_me_down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

/* 区域标题统一优化 */
.gm-title {
    margin-bottom: 50px;
    text-align: center;
}

.gm-title span {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 6px 18px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gm-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.gm-title p {
    font-size: 16px;
    color: #666;
}

/* 视频区域优化 - 明亮背景 */
.video-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* 游戏介绍区域优化 - 明亮背景 */
.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 17px;
    color: #444;
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    color: #1a1a2e;
    padding-left: 8px;
}

.feature-list li i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.feature-list li strong {
    color: #c9a000;
    font-weight: 600;
}

.intro-highlight {
    margin-top: 30px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-left: 3px solid #ffd700;
    border-radius: 0 10px 10px 0;
    font-size: 15px;
    color: #555;
}

.intro-highlight strong {
    color: #c9a000;
}

.abt3-right-thumb {
    position: relative;
}

.abt3-right-thumb img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.abt3-right-thumb:hover img {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* 进度/公会区域优化 - 深蓝背景 */
.game-satisfaction {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    position: relative;
}

.game-satisfaction .gm-title span {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.game-satisfaction .gm-title h2 {
    color: #ffffff;
}

.game-satisfaction .gm-title p {
    color: #aaa;
}

.fact-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: center;
}

.fact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fact-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.fact-item p {
    font-size: 15px;
    color: #ccc;
    letter-spacing: 0.5px;
}

/* 副本进度区域优化 - 浅灰背景 */
.raid-section {
    padding: 100px 0;
    background: #f0f2f5;
}

.single-blog {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.single-blog:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 25px;
    margin-bottom: 0;
}

.blog-content h2 {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.raid-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.raid-meta span {
    display: inline-block;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.12);
    color: #8b6914;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.raid-date {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.raid-date i {
    color: #c9a000;
}

.blog-thumb {
    position: relative;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.single-blog:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-thumb .read-more {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #ffd700;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.blog-thumb .read-more:hover {
    background: #1a1a2e;
    color: #ffd700;
    transform: translateY(-2px);
}

/* 橙武区域优化 - 修复排版问题 */
.legendary-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #e8ecf1 0%, #f5f7fa 50%, #e8ecf1 100%);
}

/* 橙武卡片 - 完全重写样式 */
.weapon-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ffaa00 100%);
}

.weapon-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.weapon-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-right: 0;
}

.weapon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.weapon-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.weapon-list li:last-child {
    border-bottom: none;
}

.weapon-list .label {
    font-weight: 600;
    color: #333;
}

.weapon-list ul {
    list-style: none;
    padding: 8px 0 0 15px;
    margin: 0;
}

.weapon-list ul li {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 4px;
}

.weapon-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.weapon-effect {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    border-left: 3px solid #ffd700;
}

.weapon-effect i {
    color: #c9a000;
    margin-right: 5px;
}

.weapon-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    color: #8b6914;
    font-weight: 500;
}

.weapon-footer i {
    margin-right: 5px;
}

/* 下载区域优化 - 白色背景 */
.download-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
    text-decoration: none;
}

.btn-download i {
    font-size: 18px;
}

/* 微信群区域优化 - 浅灰背景 */
.wx-section {
    padding: 80px 0 100px;
    background: #f5f7fa;
}

.wx-card {
    max-width: 320px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wx-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wx-qrcode {
    width: 100%;
    margin: 0;
}

.wx-qrcode img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.wx-tip {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.wx-tip i {
    color: #09bb07;
    margin-right: 5px;
}

/* Footer 优化 */
.footer-area {
    background: #1a1a2e;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.footer-content p span {
    color: #ffd700;
}

/* 返回顶部按钮优化 */
.scroll_to_top {
    background: #ffd700;
    color: #1a1a2e;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    font-size: 18px;
}

.scroll_to_top.active {
    opacity: 1;
    visibility: visible;
}

.scroll_to_top:hover {
    background: #1a1a2e;
    transform: translateY(-3px);
    color: #ffd700;
}

/* 移动端菜单优化 */
.slicknav_menu {
    background: transparent;
}

.slicknav_nav {
    background: rgba(26, 26, 46, 0.98);
    border-radius: 12px;
    margin-top: 10px;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slicknav_nav a {
    color: #ddd;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.slicknav_nav a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-radius: 0;
}

/* 响应式优化 */
@media (max-width: 991px) {
    .hero-content h2 {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .gm-title h2 {
        font-size: 28px;
    }
    
    .weapon-card {
        margin-bottom: 25px;
    }
    
    .single-blog {
        margin-bottom: 25px;
    }
    
    .fact-item {
        margin-bottom: 20px;
    }
    
    .main-menu nav .nav a {
        font-size: 15px;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .hero-content h2 {
        font-size: 42px;
        letter-spacing: 0.1em;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 0.08em;
        padding: 10px 20px;
        max-width: 90%;
        margin: 15px auto 0;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-download {
        width: 90%;
        justify-content: center;
    }
    
    .video-wrapper {
        border-radius: 12px;
        margin: 0 15px;
    }
    
    .weapon-title {
        font-size: 18px;
    }
}
