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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(233, 69, 96, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

header {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 0;
    text-align: center;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 2.8em;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 50%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
    }
    50% {
        text-shadow: 0 0 50px rgba(233, 69, 96, 0.8);
    }
}

.subtitle {
    font-size: 1.2em;
    color: #8b949e;
    letter-spacing: 2px;
}

nav {
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav .container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-category {
    position: relative;
}

.nav-category-btn {
    padding: 10px 20px;
    font-size: 0.95em;
    background: rgba(233, 69, 96, 0.1);
    border: 2px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.nav-category-btn:hover {
    background: rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.6);
    color: #fff;
}

.nav-category-btn.active {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 8px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-category:hover .nav-dropdown,
.nav-category.active .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .nav-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9em;
    background: transparent;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
    margin: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.nav-dropdown .nav-btn:hover {
    background: rgba(233, 69, 96, 0.15);
    color: #fff;
    transform: translateX(5px);
}

.nav-dropdown .nav-btn.active {
    background: rgba(233, 69, 96, 0.25);
    color: #e94560;
    font-weight: 600;
}

.nav-btn {
    padding: 12px 28px;
    font-size: 0.95em;
    background: rgba(233, 69, 96, 0.1);
    border: 2px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.6);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.nav-btn.active {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

main {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.section {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.active {
    display: block;
}

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

h2 {
    font-size: 2.2em;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    text-align: center;
    text-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
    font-weight: 700;
}

h3 {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.mode-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.mode-desc {
    color: #a0a0a0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mode-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    color: #a0a0a0;
}

.stat strong {
    color: #e94560;
}

.tips-section {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.tips-section h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

#game-tips {
    list-style: none;
}

#game-tips li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.8;
    transition: all 0.3s ease;
}

#game-tips li:hover {
    color: #fff;
    transform: translateX(10px);
}

#game-tips li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #e94560;
    font-size: 0.8em;
    top: 50%;
    transform: translateY(-50%);
}

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

.stat-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.stat-card h3 {
    color: #8b949e;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-value {
    font-size: 2.8em;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.chart-section {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.chart-section h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.chart-container {
    position: relative;
    height: 400px;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.map-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.map-card h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.map-stats p {
    padding: 10px 0;
    color: #a0a0a0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-stats p:last-child {
    border-bottom: none;
}

.map-stats strong {
    color: #e0e0e0;
}

.update-time {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.update-time span {
    color: #e94560;
}

.gold-maps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.gold-map {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-map:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.gold-map h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.6em;
}

.gold-table {
    width: 100%;
    border-collapse: collapse;
}

.gold-table thead {
    background: rgba(233, 69, 96, 0.15);
}

.gold-table th {
    padding: 15px;
    text-align: left;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gold-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
    color: #e0e0e0;
    transition: background 0.3s ease;
}

.gold-table tbody tr:hover {
    background: rgba(233, 69, 96, 0.1);
}

.spawn-rate {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #e94560;
    margin-top: 40px;
}

footer p {
    color: #a0a0a0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    header .header-top {
        padding: 20px 0;
    }
    
    .subtitle {
        font-size: 0.95em;
    }
    
    .new-year-banner {
        padding: 12px 0;
    }
    
    .new-year-text {
        font-size: 0.9em;
    }
    
    nav {
        padding: 10px 0;
        position: relative;
    }
    
    nav .container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-categories {
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-category {
        width: calc(50% - 4px);
    }
    
    .nav-category-btn {
        padding: 12px 16px;
        font-size: 0.9em;
        width: 100%;
        text-align: center;
        min-height: 48px;
    }
    
    .nav-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        min-width: 280px;
        max-width: 90vw;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .nav-dropdown .nav-btn {
        padding: 14px 16px;
        font-size: 0.95em;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-dropdown .nav-btn::after {
        content: '→';
        opacity: 0.5;
    }
    
    .nav-dropdown .nav-btn:hover {
        transform: translateX(0);
        background: rgba(233, 69, 96, 0.2);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1500;
        opacity: 0;
        transition: opacity 0.15s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .game-modes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mode-card,
    .stat-card {
        padding: 20px;
        transition: none;
    }
    
    .mode-card:hover,
    .stat-card:hover {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-value {
        font-size: 1.8em;
    }
    
    .tips-section {
        padding: 20px;
    }
    
    #game-tips li {
        padding: 12px 0;
        padding-left: 30px;
        font-size: 0.95em;
    }
    
    .market-trends-grid,
    .market-hot-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trend-chart-container,
    .hot-chart-container {
        height: 300px;
        padding: 20px;
        transition: none;
    }
    
    .data-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .data-table {
        font-size: 0.85em;
        min-width: 600px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8em;
        text-align: left;
    }
    
    .market-trends-controls,
    .market-hot-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .market-tabs,
    .hot-tabs {
        width: 100%;
    }
    
    .market-tab,
    .hot-tab {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        min-height: 48px;
        transition: none;
    }

    .point-filters {
        gap: 8px;
    }

    .point-filter {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 12px 10px;
        font-size: 0.9em;
        min-height: 48px;
        text-align: center;
        transition: none;
    }

    .map-points-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-point-card {
        padding: 20px;
        transition: none;
    }

    .map-point-card h3 {
        font-size: 1.1em;
    }

    select {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95em;
        min-height: 48px;
    }
    
    .gold-maps {
        grid-template-columns: 1fr;
    }
    
    .map-card {
        padding: 20px;
        transition: none;
    }
    
    .weapons-grid {
        grid-template-columns: 1fr;
    }
    
    .weapon-card {
        padding: 20px;
        transition: none;
    }
    
    .economy-stats {
        grid-template-columns: 1fr;
    }
    
    .export-buttons {
        flex-direction: column;
    }
    
    .export-btn {
        width: 100%;
        min-height: 48px;
        transition: none;
    }
    
    .search-box {
        max-width: 100%;
        flex-direction: column;
    }
    
    .search-box input,
    .search-box button {
        width: 100%;
        min-height: 48px;
    }
    
    .filter-controls,
    .leaderboard-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .filter-controls select,
    .leaderboard-controls select {
        width: 100%;
    }
    
    .chart-container {
        height: 300px;
        padding: 10px;
        transition: none;
    }
    
    .toast {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(100px);
        bottom: 20px;
        max-width: 90vw;
        text-align: center;
        transition: transform 0.15s ease;
    }
    
    .toast.show {
        transform: translateX(-50%) translateY(0);
    }
    
    main {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mission-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .mission-controls select {
        width: 100%;
        min-width: auto;
    }
    
    .equipment-recommend-content {
        grid-template-columns: 1fr;
    }
    
    .equipment-recommend-card {
        padding: 20px;
    }
    
    .recommend-header h3 {
        font-size: 1.3em;
    }
    
    .weapon-compare-table-wrapper {
        padding: 15px;
        overflow-x: auto;
    }
    
    .weapon-compare-table {
        min-width: 800px;
    }
    
    .weapon-compare-table th,
    .weapon-compare-table td {
        padding: 10px 8px;
        font-size: 0.85em;
    }
    
    .map-guides-content {
        grid-template-columns: 1fr;
    }
    
    .map-guide-card {
        padding: 20px;
    }
    
    .map-guide-header h3 {
        font-size: 1.4em;
    }
    
    .location-item,
    .extraction-item,
    .tip-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .location-name,
    .extraction-name {
        width: 100%;
    }
    
    .location-loot,
    .location-danger,
    .extraction-requirement {
        align-self: flex-start;
    }
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
}

.search-box input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    color: #e0e0e0;
    font-size: 1em;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.search-box button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.search-box button:active {
    transform: translateY(0);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-controls select {
    padding: 12px 24px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    color: #e0e0e0;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-controls select:focus {
    outline: none;
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.export-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.export-btn:active {
    transform: translateY(0);
}

.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.weapon-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.weapon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.weapon-card h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
}

.weapon-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.weapon-stats p {
    padding: 8px 0;
    color: #a0a0a0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.weapon-stats strong {
    color: #e0e0e0;
}

.weapon-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border-radius: 15px;
    font-size: 0.85em;
    margin-bottom: 15px;
}

.economy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.economy-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.economy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.economy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.economy-card h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.economy-value {
    font-size: 2.8em;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.export-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.leaderboard-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.leaderboard-table {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    overflow-x: auto;
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: rgba(233, 69, 96, 0.2);
}

.leaderboard-table th {
    padding: 15px;
    text-align: left;
    color: #e94560;
    font-weight: bold;
}

.leaderboard-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.leaderboard-table tbody tr:hover {
    background: rgba(233, 69, 96, 0.1);
}

.rank-1 {
    color: #ffd700 !important;
    font-weight: bold;
}

.rank-2 {
    color: #c0c0c0 !important;
    font-weight: bold;
}

.rank-3 {
    color: #cd7f32 !important;
    font-weight: bold;
}

#search-results-content {
    min-height: 200px;
}

.search-result-section {
    margin-bottom: 40px;
}

.search-result-section h3 {
    color: #e94560;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.search-result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid #e94560;
    transition: transform 0.3s ease;
}

.search-result-item:hover {
    transform: translateX(5px);
}

.search-result-item strong {
    color: #e94560;
}

.profit-positive {
    color: #4caf50;
    font-weight: bold;
}

.demand-高 {
    color: #ff5252;
    font-weight: bold;
}

.demand-中 {
    color: #ff9800;
    font-weight: bold;
}

.demand-低 {
    color: #4caf50;
    font-weight: bold;
}

.difficulty-困难 {
    color: #ff5252;
    font-weight: bold;
}

.difficulty-中等 {
    color: #ff9800;
    font-weight: bold;
}

.difficulty-简单 {
    color: #4caf50;
    font-weight: bold;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.mission-header h3 {
    color: #e94560;
    font-size: 1.5em;
}

.mission-status {
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.status-完成 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.status-进行中 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.status-未开始 {
    background: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

.mission-stages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-stage {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stage-完成 {
    border-left-color: #4caf50;
}

.stage-进行中 {
    border-left-color: #ff9800;
}

.stage-未开始 {
    border-left-color: #a0a0a0;
}

.stage-info h4 {
    color: #e0e0e0;
    margin-bottom: 5px;
}

.stage-info p {
    color: #a0a0a0;
    font-size: 0.9em;
}

.stage-reward {
    text-align: right;
}

.reward-amount {
    display: block;
    font-size: 1.2em;
    color: #ffd700;
    font-weight: bold;
}

.reward-label {
    font-size: 0.8em;
    color: #a0a0a0;
}

.mission-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.mission-controls select {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.mission-controls select:hover {
    border-color: rgba(233, 69, 96, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.mission-controls select:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.s4-mission-card {
    background: rgba(233, 69, 96, 0.08);
    border: 2px solid rgba(233, 69, 96, 0.5);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.s4-mission-card .mission-header h3 {
    color: #ff6b8a;
    font-size: 1.6em;
}

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

.mission-difficulty {
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.difficulty-简单 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.difficulty-中等 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.difficulty-困难 {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.urgency-极高 {
    color: #ff1744;
    font-weight: bold;
}

.urgency-高 {
    color: #ff5252;
    font-weight: bold;
}

.urgency-中 {
    color: #ff9800;
    font-weight: bold;
}

.urgency-低 {
    color: #4caf50;
    font-weight: bold;
}

.search-result-item span {
    color: #a0a0a0;
    margin-left: 10px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #a0a0a0;
    font-size: 1.2em;
}



.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(233, 69, 96, 0.3);
    border-radius: 50%;
    border-top-color: #e94560;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(233, 69, 96, 0.3);
    border-radius: 50%;
    border-top-color: #e94560;
    animation: spin 1s ease-in-out infinite;
}

.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 5px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-text {
    height: 20px;
    margin-bottom: 10px;
}

.skeleton-card {
    height: 150px;
}

.btn:active {
    transform: scale(0.98);
}

.nav-btn:active {
    transform: scale(0.98) translateY(-2px);
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 20px;
}



.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(233, 69, 96, 0.95);
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: rgba(46, 204, 113, 0.95);
}

.toast.error {
    background: rgba(231, 76, 60, 0.95);
}

.market-tabs,
.hot-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.market-tab,
.hot-tab {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1em;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.market-tab:hover,
.hot-tab:hover {
    background: rgba(233, 69, 96, 0.2);
    transform: translateY(-2px);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.2);
}

.market-tab.active,
.hot-tab.active {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.time-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.time-filter select {
    padding: 12px 24px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    color: #e0e0e0;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-filter select:focus {
    outline: none;
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.point-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.point-filter {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95em;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.point-filter:hover {
    background: rgba(233, 69, 96, 0.2);
    transform: translateY(-2px);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.2);
}

.point-filter.active {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.map-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.map-point-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-point-card:hover {
    border-color: rgba(233, 69, 96, 0.4);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
    transform: translateY(-5px);
}

.map-point-card h3 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.chart-container {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    margin-bottom: 30px;
    position: relative;
    height: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-container:hover {
    border-color: rgba(233, 69, 96, 0.4);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.15);
}

.data-table {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    overflow-x: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-table:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: rgba(233, 69, 96, 0.15);
}

.data-table th {
    padding: 15px;
    text-align: left;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.data-table th.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.data-table th.sortable:hover {
    background: linear-gradient(135deg, #ff6b8a 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.data-table th.sortable .sort-icon {
    margin-left: 5px;
    font-size: 0.8em;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: inline-block;
}

.data-table th.sortable:hover .sort-icon {
    opacity: 1;
}

.data-table th.sortable.sort-asc .sort-icon::after {
    content: '↑';
}

.data-table th.sortable.sort-desc .sort-icon::after {
    content: '↓';
}

.data-table th.sortable.sort-asc,
.data-table th.sortable.sort-desc {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.data-table th.sortable.sort-asc .sort-icon,
.data-table th.sortable.sort-desc .sort-icon {
    opacity: 1;
    color: #e94560;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
    color: #e0e0e0;
    transition: background 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(233, 69, 96, 0.1);
}

.change-positive {
    color: #4caf50;
    font-weight: bold;
}

.change-negative {
    color: #ff5252;
    font-weight: bold;
}

.item-name {
    font-weight: bold;
    color: #e0e0e0;
}

.news-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.news-container::-webkit-scrollbar {
    width: 8px;
}

.news-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.news-container::-webkit-scrollbar-thumb {
    background: rgba(233, 69, 96, 0.5);
    border-radius: 4px;
}

/* Market News Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-card .news-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-icon {
    font-size: 1.5rem;
}

.news-card .news-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.news-item .news-time {
    color: #a0a0a0;
    font-size: 0.85rem;
}

.news-item .news-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: inline-block;
    width: fit-content;
}

.news-item .news-tag.tag-重要 {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.news-item .news-tag.tag-公告 {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.news-item .news-tag.tag-涨价 {
    background: rgba(255, 82, 82, 0.2);
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.news-item .news-tag.tag-降价 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.news-item .news-tag.tag-活动 {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.news-item .news-tag.tag-更新 {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.news-item .news-text {
    color: #e0e0e0;
    line-height: 1.5;
    margin: 0;
}

/* Legacy News Styles */
.news-item {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-item:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.25);
    border-color: rgba(233, 69, 96, 0.3);
}

.news-item:hover::before {
    opacity: 1;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.news-time {
    color: #a0a0a0;
    font-size: 0.95em;
}

.news-type {
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    backdrop-filter: blur(10px);
}

.type-涨价 {
    background: rgba(255, 82, 82, 0.2);
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.type-降价 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.type-活动 {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.type-更新 {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.news-title {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-size: 1.4em;
    font-weight: 700;
}

.news-content {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 12px;
}

.news-impact {
    color: #a0a0a0;
    font-size: 0.95em;
}

.weapon-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.weapon-code-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.weapon-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.weapon-code-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.weapon-code-card:hover::before {
    opacity: 1;
}

.code-header h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.code-content {
    margin-bottom: 15px;
}

.code-block {
    background: rgba(13, 17, 23, 0.8);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.code-block pre {
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 0.85em;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #ff6b8a 0%, #e94560 100%);
}

.code-stats {
    display: flex;
    justify-content: space-between;
    color: #a0a0a0;
    font-size: 0.9em;
}

.map-points-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-info {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-info:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.map-info h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.map-info p {
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 1.05em;
}

.points-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.point-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.point-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.point-header h4 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    font-weight: 700;
}

.point-type {
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85em;
    backdrop-filter: blur(10px);
}

.type-资源点 {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.type-撤离点 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.type-危险区 {
    background: rgba(255, 82, 82, 0.2);
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.type-安全区 {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.point-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.point-details p {
    color: #a0a0a0;
    line-height: 1.6;
}

.point-details strong {
    color: #e0e0e0;
}

.news-container {
    max-height: 400px;
}

.bullet-diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.bullet-diff-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bullet-diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bullet-diff-card.high-profit {
    border-color: rgba(255, 193, 7, 0.3);
}

.bullet-diff-card.high-profit:hover {
    border-color: rgba(255, 193, 7, 0.5);
}

.bullet-diff-card.high-demand {
    border-color: rgba(255, 82, 82, 0.3);
}

.bullet-diff-card.high-demand:hover {
    border-color: rgba(255, 82, 82, 0.5);
}

.bullet-diff-card.all-bullets {
    border-color: rgba(33, 150, 243, 0.3);
}

.bullet-diff-card.all-bullets:hover {
    border-color: rgba(33, 150, 243, 0.5);
}

.bullet-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bullet-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.bullet-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.bullet-content {
    max-height: 400px;
    overflow-y: auto;
}

.bullet-content::-webkit-scrollbar {
    width: 6px;
}

.bullet-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.bullet-content::-webkit-scrollbar-thumb {
    background: rgba(233, 69, 96, 0.5);
    border-radius: 3px;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bullet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.bullet-item .name {
    flex-grow: 1;
    margin: 0 1rem;
    font-weight: 500;
}

.bullet-item .price {
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    color: #e0e0e0;
}

.bullet-item .profit {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.bullet-item .profit-rate {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

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

.restock-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.restock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.restock-card.urgent {
    border-color: rgba(255, 82, 82, 0.3);
}

.restock-card.urgent:hover {
    border-color: rgba(255, 82, 82, 0.5);
}

.restock-card.high-probability {
    border-color: rgba(33, 150, 243, 0.3);
}

.restock-card.high-probability:hover {
    border-color: rgba(33, 150, 243, 0.5);
}

.restock-card.all-items {
    border-color: rgba(76, 175, 80, 0.3);
}

.restock-card.all-items:hover {
    border-color: rgba(76, 175, 80, 0.5);
}

.restock-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.restock-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.restock-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.restock-content {
    max-height: 400px;
    overflow-y: auto;
}

.restock-content::-webkit-scrollbar {
    width: 6px;
}

.restock-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.restock-content::-webkit-scrollbar-thumb {
    background: rgba(233, 69, 96, 0.5);
    border-radius: 3px;
}

.restock-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.restock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.restock-item .name {
    flex-grow: 1;
    margin: 0 1rem;
    font-weight: 500;
}

.restock-item .stock {
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    color: #e0e0e0;
}

.restock-item .time {
    white-space: nowrap;
    color: #a0a0a0;
}

.restock-item .probability {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
    color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

.restock-item .urgency {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
}

.restock-item .urgency.urgency-极高 {
    color: #ff1744;
    background: rgba(255, 23, 68, 0.1);
}

.restock-item .urgency.urgency-高 {
    color: #ff5252;
    background: rgba(255, 82, 82, 0.1);
}

.restock-item .urgency.urgency-中 {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.restock-item .urgency.urgency-低 {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.boss-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.boss-controls select {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.boss-controls select:hover {
    border-color: rgba(233, 69, 96, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.boss-controls select:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.boss-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.boss-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.boss-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

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

.boss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.boss-header h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em;
    font-weight: 700;
}

.boss-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.boss-map {
    padding: 8px 20px;
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95em;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.boss-spawn-rate {
    padding: 8px 20px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95em;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.boss-locations {
    margin-bottom: 25px;
}

.boss-locations h4 {
    color: #e94560;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.boss-location {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid rgba(233, 69, 96, 0.5);
    transition: all 0.3s ease;
}

.boss-location:hover {
    background: rgba(0, 0, 0, 0.4);
    border-left-color: #e94560;
    transform: translateX(5px);
}

.location-details h5 {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.location-details p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95em;
}

.location-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.location-stats span {
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 500;
}

.spawn-prob {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.guards {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.difficulty {
    font-weight: 600;
}

.difficulty-简单 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.difficulty-中等 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.difficulty-困难 {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.boss-drops {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.boss-drops h4 {
    color: #e94560;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.boss-drop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.boss-drop:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.drop-name {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.05em;
}

.drop-rate {
    color: #ff9800;
    font-weight: 600;
    font-size: 0.95em;
}

.drop-value {
    color: #4caf50;
    font-weight: 600;
    font-size: 0.95em;
}

.equipment-recommend-controls,
.weapon-compare-controls,
.map-guides-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.equipment-recommend-controls select,
.weapon-compare-controls select,
.map-guides-controls select {
    padding: 12px 24px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    color: #e0e0e0;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.equipment-recommend-controls select:focus,
.weapon-compare-controls select:focus,
.map-guides-controls select:focus {
    outline: none;
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.equipment-recommend-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.equipment-recommend-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.equipment-recommend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equipment-recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.equipment-recommend-card:hover::before {
    opacity: 1;
}

.recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recommend-header h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5em;
    font-weight: 700;
}

.budget-tag {
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
}

.budget-低 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.budget-中 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.budget-高 {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.recommend-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.detail-item .label {
    color: #a0a0a0;
    font-size: 0.95em;
}

.detail-item .value {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1em;
}

.detail-item .value.cost {
    color: #4caf50;
    font-size: 1.1em;
}

.detail-item.description {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item.description .value {
    color: #8b949e;
    font-size: 0.9em;
    font-weight: 400;
}

.weapon-compare-table-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    overflow-x: auto;
}

.weapon-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.weapon-compare-table thead {
    background: rgba(233, 69, 96, 0.2);
}

.weapon-compare-table th {
    padding: 15px;
    text-align: left;
    color: #e94560;
    font-weight: bold;
    font-size: 0.95em;
}

.weapon-compare-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.weapon-compare-table tbody tr:hover {
    background: rgba(233, 69, 96, 0.1);
}

.pros-cons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros {
    color: #4caf50;
    font-size: 0.9em;
    line-height: 1.4;
}

.cons {
    color: #f44336;
    font-size: 0.9em;
    line-height: 1.4;
}

.map-guides-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
}

.map-guide-card {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.map-guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.4);
}

.map-guide-card:hover::before {
    opacity: 1;
}

.map-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-guide-header h3 {
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6em;
    font-weight: 700;
}

.map-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.difficulty-badge {
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
}

.difficulty-badge.difficulty-简单 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.difficulty-badge.difficulty-中等 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.difficulty-badge.difficulty-困难 {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.level-badge {
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.map-guide-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-section h4 {
    color: #e94560;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.key-locations {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.location-name {
    color: #e0e0e0;
    font-weight: 600;
    flex: 1;
}

.location-loot {
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.85em;
    font-weight: 600;
}

.location-loot.loot-高 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.location-loot.loot-极高 {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.location-loot.loot-中 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.location-loot.loot-低 {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.location-danger {
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.85em;
    font-weight: 600;
}

.location-danger.danger-高 {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.location-danger.danger-极高 {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.location-danger.danger-中 {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.location-danger.danger-低 {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.extraction-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extraction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.extraction-name {
    color: #e0e0e0;
    font-weight: 600;
    flex: 1;
}

.extraction-requirement {
    color: #8b949e;
    font-size: 0.9em;
}

.game-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.tip-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b8a 100%);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
    flex-shrink: 0;
}

.tip-text {
    color: #e0e0e0;
    font-size: 0.95em;
    line-height: 1.5;
}
