@charset "UTF-8";

:root {
    --color-bg-dark: #2c2c2c;
    --color-bg-secondary: #3a3a3a;
    --color-bg-card: #4a4a4a;
    --color-gold: #a8a8a8;
    --color-gold-light: #c0c0c0;
    --color-gold-dark: #808080;
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #b8b8b8;
    --color-text-muted: #909090;
    --color-accent-red: #a8a8a8;
    --color-accent-orange: #c0c0c0;
    --color-border: rgba(168, 168, 168, 0.3);
    --color-shadow: rgba(0, 0, 0, 0.3);
    --font-primary: 'Noto Sans SC', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #3a3a3a 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.main-container {
    width: 1920px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #3a3a3a 100%);
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('../images/tt.png'),
        repeating-linear-gradient(
            45deg,
            rgba(168, 168, 168, 0.05),
            rgba(168, 168, 168, 0.05) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(168, 168, 168, 0.05),
            rgba(168, 168, 168, 0.05) 1px,
            transparent 1px,
            transparent 20px
        );
    background-size: cover, auto, auto;
    background-repeat: repeat, repeat, repeat;
    background-position: center, center, center;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    position: relative;
    width: 1920px;
    height: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.download-buttons {
    position: absolute;
    top: 900px;
    z-index: 100;
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.download-btn-img {
    width: 300px;
    height: auto;
    display: block;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1920px;
    height: 1080px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(168, 168, 168, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(128, 128, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(168, 168, 168, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, rgba(20, 20, 20, 0.85) 0%, rgba(30, 30, 30, 0.9) 100%);
    z-index: 2;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--color-gold);
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    display: block;
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
    letter-spacing: 5px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.title-sub {
    display: block;
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-top: 10px;
    letter-spacing: 8px;
}

.hero-slogan {
    font-size: clamp(16px, 3vw, 22px);
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(108, 117, 125, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(108, 117, 125, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: rgba(108, 117, 125, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 12px;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 117, 125, 0.3);
    box-shadow: 0 20px 40px rgba(108, 117, 125, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover .card-icon::before {
    opacity: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.card-desc {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
}

.card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.attributes {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.attributes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.attributes-section {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.attributes-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.attributes-grid-small {
    grid-template-columns: repeat(8, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.attributes-grid-large {
    grid-template-columns: repeat(7, 1fr);
    max-width: 770px;
    margin: 0 auto;
}

.attribute-small-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.attribute-bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attribute-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 4px));
    width: 70px;
    height: 70px;
    background-image: url('../images/dk.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.attribute-small-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-gold);
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}



.attribute-small-icon img {
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.attribute-small-icon:hover img {
    transform: scale(1.1);
}

/* 线性扫光效果 */
.attribute-small-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: sweep 2s infinite;
    z-index: 2;
}

@keyframes sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

.attribute-popup {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%) scale(0);
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 297px;
    box-shadow: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    pointer-events: none;
}

.attribute-small-box:nth-child(1) .attribute-popup {
    width: 188px;
    height: 359px;
}

.attribute-small-box:nth-child(2) .attribute-popup {
    width: 188px;
    height: 360px;
}

.attributes-grid-large .attribute-small-box:nth-child(1) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(2) .attribute-popup {
    width: 158px;
    height: 331px;
}

.attributes-grid-large .attribute-small-box:nth-child(3) .attribute-popup {
    width: 170px;
    height: 331px;
}

.attributes-grid-large .attribute-small-box:nth-child(4) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(5) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(6) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(7) .attribute-popup {
    width: 158px;
    height: 313px;
}

.attributes-grid-large .attribute-small-box:nth-child(8) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(9) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(10) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(11) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(12) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(13) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(14) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(15) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(16) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(17) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(18) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(19) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(20) .attribute-popup,
.attributes-grid-large .attribute-small-box:nth-child(21) .attribute-popup {
    width: 158px;
    height: 295px;
}

.attribute-popup::before {
    display: none;
}

.attribute-popup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.attribute-small-box:hover .attribute-popup {
    transform: translateX(-50%) translateY(-100%) scale(1);
    opacity: 1;
}

.attribute-small-box:hover .attribute-small-icon {
    transform: translateY(-2px);
}

.attribute-small-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 80px;
    position: relative;
    z-index: 10;
    margin-top: 10px;
}

.equipment {
    padding: 120px 0;
    background: var(--color-bg-dark);
    position: relative;
}

.equipment::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.equipment-item {
    text-align: center;
}

.equipment-frame {
    position: relative;
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.equipment-frame:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
}

.frame-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.equipment-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.equipment-frame:hover .equipment-glow {
    opacity: 1;
}

.equipment-img {
    width: 430px;
    height: 510px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.equipment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.equipment-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.equipment-rarity {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.equipment-rarity.legend {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.equipment-rarity.epic {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.equipment-rarity.rare {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.fashion {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.fashion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.fashion-carousel {
    position: relative;
}

.carousel-container {
    overflow: visible;
    border-radius: var(--border-radius-lg);
    perspective: 1200px;
}

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    height: 623px;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.carousel-3d-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 930px;
    height: 573px;
    margin-left: -465px;
    margin-top: -286.5px;
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-3d-item.pos-0 {
    transform: translateX(-510px) translateZ(-200px) rotateY(20deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

.carousel-3d-item.pos-1 {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    z-index: 10;
    opacity: 1;
}

.carousel-3d-item.pos-2 {
    transform: translateX(510px) translateZ(-200px) rotateY(-20deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

.carousel-3d-item.hidden {
    opacity: 0;
    transform: scale(0.5) translateZ(-400px);
    z-index: 0;
}

.fashion-item {
    min-width: 33.333%;
    padding: 0 15px;
}

.fashion-frame {
    position: relative;
    background: transparent;
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    margin: 0 auto;
    max-width: 930px;
}

.fashion-frame:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.fashion-img {
    width: 930px;
    height: 573px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.fashion-info {
    padding: 20px;
    text-align: center;
}

.fashion-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-gold);
}

.fashion-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.special {
    padding: 120px 0;
    background: var(--color-bg-dark);
    position: relative;
}

.special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.special-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.special-tabs {
    display: flex;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    font-family: var(--font-primary);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.tab-btn:hover {
    color: var(--color-gold);
}

.tab-btn.active {
    color: var(--color-gold);
    background: var(--color-bg-card);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-panel {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.special-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.special-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.special-image img {
    width: 100%;
    height: 510px;
    object-fit: contain;
}

.special-carousel {
    width: 706px;
    height: 510px;
    overflow: hidden;
    position: relative;
}

.special-carousel-prev,
.special-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.special-carousel-prev {
    left: 10px;
}

.special-carousel-next {
    right: 10px;
}

.special-carousel-prev:hover,
.special-carousel-next:hover {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 0 20px rgba(108, 117, 125, 0.5);
}

.special-carousel-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.5s ease;
}

.special-carousel-track img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}

.special-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.special-info p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 神技展示背景图片 */
.special-info {
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: var(--border-radius);
    min-height: 506px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 背景图片的不透明度处理 */
.warrior-panel .special-info::before,
.mage-panel .special-info::before,
.taoist-panel .special-info::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 506px;
    width: 506px;
    background-size: 506px 506px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
    margin: 0 auto;
}

.warrior-panel .special-info::before {
    background-image: url('../images/zs.png');
}

.mage-panel .special-info::before {
    background-image: url('../images/fs.png');
}

.taoist-panel .special-info::before {
    background-image: url('../images/ds.png');
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-primary);
}

.feature-list i {
    color: var(--color-gold);
}

.footer {
    background: var(--color-bg-secondary);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--color-gold);
    width: 16px;
}

.footer-divider {
    height: 1px;
    background: var(--color-border);
    margin-bottom: 30px;
}

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

.health-notice {
    margin-bottom: 20px;
}

.health-notice p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.copyright p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.designer {
    color: var(--color-gold) !important;
    margin-top: 10px !important;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

@media (max-width: 1200px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fashion-item {
        min-width: 33.333%;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg-secondary);
        flex-direction: column;
        padding: 100px 40px;
        gap: 0;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .special-display {
        grid-template-columns: 1fr;
    }
    
    .special-image img {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .fashion-item {
        min-width: 100%;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .special-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid var(--color-border);
    }
    
    .tab-btn::after {
        display: none;
    }
    
    .tab-btn.active {
        background: rgba(212, 175, 55, 0.1);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-container {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}