body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, 
        #050510 0%,           /* Hero深蓝 */
        #0a0a1a 20%,          /* 过渡到主色 */
        #1a0a2e 35%,          /* NFT部分紫蓝 */
        #0a0a1a 50%,          /* Mining部分回到主色 */
        #1a0a2e 65%,          /* Command部分再次紫蓝 */
        #2e1a0a 80%,          /* Features部分偏红 */
        #1a0a2e 95%,          /* Roadmap紫蓝 */
        #050510 100%          /* Footer深色收尾 */
    );
    background-attachment: fixed;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00aaff;
}

/* Hero Actions Container */
.hero-actions {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
}

/* Watch Trailer Button */
.watch-trailer-btn {
    background: linear-gradient(135deg, #ff0080, #ff4081);
    border: 2px solid transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 0 25px rgba(255, 0, 128, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.watch-trailer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.watch-trailer-btn:hover::before {
    left: 100%;
}

.watch-trailer-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 0, 128, 0.6),
        0 15px 45px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff4081, #ff0080);
    border-color: rgba(255, 255, 255, 0.3);
}

.watch-trailer-btn svg {
    transition: transform 0.3s ease;
}

.watch-trailer-btn:hover svg {
    transform: scale(1.2);
}

/* Wallet Section */
.wallet-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connect-wallet-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 20, 40, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 170, 255, 0.3);
}

#wallet-address {
    color: #00aaff;
    font-size: 0.9rem;
    font-weight: 500;
}

.disconnect-btn {
    background: rgba(255, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: rgba(255, 0, 0, 0.9);
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #0a0a1a;
    padding: 2rem;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90%;
    position: relative;
    border: 2px solid #00aaff;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-btn:hover {
    color: #00aaff;
}

#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-desktop, .hero-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    margin: 0;
    padding: 0;
    background: #000;
}

.hero-bg-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin: 0;
}

p {
    font-size: 1.5rem;
}

section {
    padding: 4rem 1rem;
    max-width: 100%;
    margin: 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* NFT Section */
#nfts {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

#nfts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(204, 102, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 204, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

#nfts h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffcc00, #cc66ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.nfts-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

#nfts-s-tier {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin: 0 auto 2rem auto;
    gap: 1.5rem;
}

#nfts-a-tier {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    gap: 1.5rem;
}

#nfts-b-tier {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.nft-card {
    background: rgba(10, 20, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
    display: flex;
    flex-direction: column;
}

/* 为不同级别设置不同高度 */
.nft-card.rarity-s {
    height: 420px;
}

.nft-card.rarity-a {
    height: 360px;
}

.nft-card.rarity-b {
    height: 320px;
}

.nft-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.6), 0 0 80px rgba(0, 170, 255, 0.3);
    border-color: rgba(0, 170, 255, 1);
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
    transform: scale(0.8);
}

.nft-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.nft-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 17px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.nft-card:hover::after {
    opacity: 1;
}



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

.nft-card.rarity-s {
    border-color: #ffcc00;
    box-shadow: 0 0 20px #ffcc00;
}

.nft-card.rarity-s:hover {
    box-shadow: 
        0 0 30px rgba(255, 204, 0, 0.6),
        0 0 60px rgba(255, 204, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 204, 0, 0.1);
    border-color: #ffcc00;
    transform: translateY(-8px) scale(1.02);
}

.nft-card.rarity-a {
    border-color: #cc66ff;
    box-shadow: 0 0 15px #cc66ff;
}

.nft-card.rarity-a:hover {
    box-shadow: 
        0 0 25px rgba(204, 102, 255, 0.6),
        0 0 50px rgba(204, 102, 255, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(204, 102, 255, 0.1);
    border-color: #cc66ff;
    transform: translateY(-6px) scale(1.015);
}

.nft-card.rarity-b {
    border-color: #00ccff;
    box-shadow: 0 0 10px #00ccff;
}

.nft-card.rarity-b:hover {
    box-shadow: 
        0 0 20px rgba(0, 204, 255, 0.6),
        0 0 40px rgba(0, 204, 255, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 10px rgba(0, 204, 255, 0.1);
    border-color: #00ccff;
    transform: translateY(-4px) scale(1.01);
}

.rarity-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}

.nft-card .nft-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.nft-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: transparent;
    transition: opacity 0.3s ease;
}

.nft-card video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nft-card-content {
    padding: 0.6rem 0.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.4rem;
}

/* 为不同级别优化内容区域 */
.nft-card.rarity-s .nft-card-content {
    padding: 0.7rem 0.9rem;
    gap: 0.5rem;
}

.nft-card.rarity-a .nft-card-content {
    padding: 0.6rem 0.8rem;
    gap: 0.4rem;
}

.nft-card.rarity-b .nft-card-content {
    padding: 0.5rem 0.7rem;
    gap: 0.3rem;
}

.nft-card h3 {
    margin: 0;
    color: #00aaff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* 为不同级别优化标题 */
.nft-card.rarity-s h3 {
    font-size: 1.15rem;
}

.nft-card.rarity-a h3 {
    font-size: 1.1rem;
}

.nft-card.rarity-b h3 {
    font-size: 1.05rem;
}

.nft-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

/* 为不同级别优化段落 */
.nft-card.rarity-s p {
    font-size: 0.92rem;
    line-height: 1.45;
}

.nft-card.rarity-a p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.nft-card.rarity-b p {
    font-size: 0.88rem;
    line-height: 1.35;
}

/* 特殊样式for specialty文本 */
.nft-card p:last-child {
    color: #a0d8ff;
    font-size: 0.85rem;
    font-weight: 500;
}

.nft-card.rarity-s p:last-child {
    font-size: 0.87rem;
}

.nft-card.rarity-a p:last-child {
    font-size: 0.85rem;
}

.nft-card.rarity-b p:last-child {
    font-size: 0.83rem;
}

.nft-card p:last-child {
    margin-bottom: 0;
}

/* Features Section */
#features {
    padding: 5rem 2rem;
    background: rgba(46, 26, 10, 0.3);
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

#features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00aaff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 0, 128, 0.03) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #ff0080);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00aaff;
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.15);
}

.feature-icon {
    margin-bottom: 1.1rem;
    color: #00aaff;
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    color: #00aaff;
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    letter-spacing: 0.01em;
}

.feature-card p {
    font-size: 1.02rem;
    color: #ccefff;
    line-height: 1.7;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: #00aaff;
}

.feature-card h3 {
    color: #00aaff;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #050510;
}

/* Roadmap Section */
#roadmap {
    padding: 5rem 2rem;
    background: rgba(26, 10, 46, 0.3);
    position: relative;
    overflow: hidden;
}

#roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

#roadmap h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff0080, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-container {
    display: flex;
    position: relative;
    overflow-x: auto;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00aaff;
    transform: translateY(-50%);
}

.roadmap-item {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08) 0%, rgba(0, 170, 255, 0.03) 100%);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 20px;
    padding: 2rem;
    min-width: 250px;
    margin: 0 1rem;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0080, #00aaff);
}

.roadmap-item:hover {
    transform: translateX(10px);
    border-color: #ff0080;
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.15);
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    width: 20px;
    height: 20px;
    background: #0a0a1a;
    border: 4px solid #00aaff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.roadmap-item h3 {
    color: #e0e0e0;
}

.roadmap-item ul {
    padding-left: 1rem;
}

.roadmap-item li {
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: 1px solid #00aaff;
    color: #00aaff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a1a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 2rem 0;
}

.mobile-nav a {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .hero-bg-desktop { display: none; }
    .hero-bg-mobile { display: block; }
    h1 { font-size: 2.5rem; }
    p { font-size: 1.2rem; }
    .roadmap-container {
        flex-direction: column;
    }
    .roadmap-container::before { display: none; }
    .roadmap-item { margin: 1rem 0; }
    .roadmap-item::before { display: none; }
    
    /* 移动端NFT卡片优化 */
    .nft-card.rarity-s {
        height: 380px;
    }
    
    .nft-card.rarity-a {
        height: 340px;
    }
    
    .nft-card.rarity-b {
        height: 300px;
    }
    
    /* 移动端网格布局调整 */
    #nfts-s-tier {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    #nfts-a-tier {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
    
    #nfts-b-tier {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
    
    /* 移动端钱包和按钮优化 */
    .wallet-section {
        display: none;
    }
    
    .hero-actions {
        margin-top: 1.5rem;
    }
    
    .watch-trailer-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .modal-content {
        padding: 1rem;
        max-width: 95%;
        margin: 1rem;
    }
    
    .close-btn {
        top: 5px;
        right: 15px;
        font-size: 1.5rem;
    }
}

/* Mining Station Section */
#mining-station {
    padding: 5rem 2rem;
    background: rgba(10, 10, 26, 0.3);
    position: relative;
    overflow: hidden;
}

#mining-station::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 170, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#mining-station h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00aaff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mining-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mining-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1) 0%, rgba(255, 0, 128, 0.05) 100%);
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #00aaff;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00aaff, #ff0080);
    border-radius: 50%;
}

.stat-info h4 {
    margin: 0 0 0.5rem 0;
    color: #00aaff;
    font-size: 1rem;
    font-weight: 600;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 0.2rem;
}

.stat-unit {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.mining-pools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pool-card {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 0, 128, 0.03) 100%);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aaff, #ff0080);
}

.pool-card:hover {
    transform: translateY(-8px);
    border-color: #00aaff;
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.15);
}

.pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pool-header h3 {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.3rem;
}

.pool-tier {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.pool-tier:contains("S-Tier"), .pool-card:first-child .pool-tier {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.pool-card:nth-child(2) .pool-tier {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #000;
}

.pool-card:nth-child(3) .pool-tier {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: #fff;
}

.pool-stats {
    margin-bottom: 1.5rem;
}

.pool-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.stat-highlight {
    color: #00aaff !important;
    font-weight: bold;
}

.pool-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00aaff, #ff0080);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pool-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00aaff, #ff0080);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.4);
}

/* Command Center Section */
#command-center {
    padding: 5rem 2rem;
    background: rgba(26, 10, 46, 0.3);
    position: relative;
    overflow: hidden;
}

#command-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 60%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#command-center h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff0080, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.command-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.command-dashboard {
    display: grid;
    gap: 2rem;
}

.dashboard-section {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08) 0%, rgba(0, 170, 255, 0.03) 100%);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

.dashboard-section h3 {
    margin: 0 0 1.5rem 0;
    color: #ff0080;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.galaxy-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.sector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sector:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.sector-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #666;
    background: #333;
    transition: all 0.3s ease;
}

.sector.active .sector-dot {
    background: #00aaff;
    border-color: #00aaff;
    box-shadow: 0 0 20px #00aaff;
}

.sector.contested .sector-dot {
    background: #ff0080;
    border-color: #ff0080;
    box-shadow: 0 0 20px #ff0080;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.sector span {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.fleet-metric {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #999;
}

.leaderboard {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.08) 0%, rgba(255, 0, 128, 0.03) 100%);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    height: fit-content;
}

.leaderboard h3 {
    margin: 0 0 1.5rem 0;
    color: #00aaff;
    font-size: 1.3rem;
    text-align: center;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.rank {
    font-weight: bold;
    color: #999;
    width: 30px;
}

.rank-1 .rank { color: #ffd700; }
.rank-2 .rank { color: #c0c0c0; }
.rank-3 .rank { color: #cd7f32; }

.commander {
    color: #e0e0e0;
    font-weight: 500;
}

.power {
    color: #00aaff;
    font-weight: bold;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff0080, #00aaff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s infinite;
}

.preview-notice {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    margin-top: 1rem;
}

.preview-notice p {
    margin: 0;
    color: #ffaa00;
    font-size: 0.9rem;
    font-weight: 500;
}

.pool-btn.disabled {
    background: linear-gradient(135deg, #666, #444);
    cursor: not-allowed;
    opacity: 0.6;
}

.pool-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .command-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mining-stats, .mining-pools {
        grid-template-columns: 1fr;
    }
    
    .fleet-stats {
        grid-template-columns: 1fr;
    }
    
    .galaxy-map {
        grid-template-columns: 1fr;
    }
    
    #mining-station h2, #command-center h2 {
        font-size: 2rem;
    }
    
    .stat-card, .pool-card, .dashboard-section, .leaderboard {
        padding: 1.5rem;
    }
    
    .coming-soon-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* 整体连贯性效果 */
main {
    position: relative;
    z-index: 1;
}

/* 性能优化的动效 - 仅在支持硬件加速的设备上启用 */
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    body {
        background-attachment: fixed;
    }
    
    #nfts::before,
    #mining-station::before,
    #command-center::before,
    #features::before,
    #roadmap::before {
        animation: float 8s ease-in-out infinite;
        will-change: transform;
    }
    
    @keyframes float {
        0%, 100% { transform: translate3d(0, 0, 0) rotateZ(0deg); }
        50% { transform: translate3d(0, -5px, 0) rotateZ(0.5deg); }
    }
}

/* 增强过渡效果 - 性能优化 */
section {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

section:hover {
    transform: translate3d(0, -2px, 0);
}

/* 添加流动的粒子效果 - 优化性能 */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    #nfts::after,
    #mining-station::after,
    #command-center::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(2px 2px at 20px 30px, rgba(0, 170, 255, 0.2), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 128, 0.2), transparent);
        background-size: 200px 100px;
        animation: particles 25s linear infinite;
        pointer-events: none;
        opacity: 0.4;
        will-change: transform;
    }

    @keyframes particles {
        0% { transform: translate3d(-200px, 0, 0); }
        100% { transform: translate3d(100vw, 0, 0); }
    }
}

/* 响应式优化 */
@media (max-width: 768px) {
    body {
        background-attachment: local; /* 移动端性能优化 */
    }
    
    #nfts::after,
    #mining-station::after,
    #command-center::after {
        display: none; /* 移动端禁用粒子动画 */
    }
}