/* 重置样式和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色调 - 深色科技风 */
    --primary-color: #00d4ff;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* 文字颜色 */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #1e293b;
    
    /* 背景颜色 */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-light: #ffffff;
    
    /* 渐变色 */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gaming: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(124, 58, 237, 0.3);
    
    /* 边框 */
    --border-color: #334155;
    --border-light: #475569;
    
    /* 动画 */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* 通用组件 */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 8px 20px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    box-shadow: var(--shadow-lg);
}

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

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

.nav-logo .logo-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.nav-logo .logo-icon img {
    display: block;
    object-fit: contain;
}

.logo-text .logo-main {
    display: block;
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .logo-sub {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* 响应式导航 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }
}

/* 英雄区域 */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/background2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 铺满容器，无黑边，必要时裁剪 */
    filter: blur(3px);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0,212,255,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(124,58,237,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-left {
    animation: fadeInUp 1s ease 0.5s both;
    text-align: left;
    width: 40%;
    max-width: 600px;
    margin-left: 15%;
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: left;
}

.title-highlight {
    display: block;
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.title-main {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    position: relative;
    min-height: 1.2em;
    white-space: nowrap;
}

.typewriter-text {
    display: inline-block;
    min-height: 1.2em;
    min-width: 200px;
    text-align: left;
    flex-shrink: 0;
}

.typewriter-icon {
    display: none; /* 隐藏图标，不占用空间 */
    width: 1.2em;
    height: 1.2em;
    margin-left: 12px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8) translateY(5px);
    flex-shrink: 0;
}

.typewriter-icon.show {
    display: inline-block; /* 显示时才占用空间 */
    opacity: 1;
    transform: scale(1) translateY(0);
}

.typewriter-cursor {
    display: inline-block;
    color: var(--primary-color);
    animation: blink-cursor 1s infinite;
    font-weight: 400;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    text-align: left;
}

.hero-features {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.hero-features .feature-item i {
    color: var(--success-color);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: flex-start;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.hero-features-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.feature-badge:hover {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

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



@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

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



.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 2s both;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--text-primary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

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

/* 游戏服务区域 */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card.dst:hover {
    border-color: #8b4513;
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.3);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.service-icon {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}



.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 4.8rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
    min-height: 140px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-features i {
    color: var(--success-color);
    font-size: 12px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    min-height: 3rem;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

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

.original-price {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: line-through;
}

.service-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-normal);
    display: block;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.service-btn.disabled {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: not-allowed;
}

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

/* 功能特色区域 */
.features {
    padding: 120px 0;
    background: var(--bg-primary);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-left .section-badge {
    margin-bottom: 24px;
}

.features-left h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: left;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-left p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-list .feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.features-list .feature-item:hover {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.8);
}

.features-list .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-list .feature-icon i {
    font-size: 20px;
    color: var(--text-primary);
}

.features-list .feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.features-list .feature-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.features-right {
    position: relative;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.showcase-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(51, 65, 85, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.showcase-header span {
    font-weight: 600;
    color: var(--text-primary);
}

.showcase-status.online {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plugin-count {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.console-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: rgba(15, 23, 42, 0.8);
}

.console-line {
    color: var(--text-secondary);
    margin-bottom: 8px;
    opacity: 0;
    animation: typewriter 0.5s ease forwards;
}

.console-line:nth-child(1) { animation-delay: 0.5s; }
.console-line:nth-child(2) { animation-delay: 1s; }
.console-line:nth-child(3) { animation-delay: 1.5s; }
.console-line:nth-child(4) { animation-delay: 2s; }

.console-line.typing::after {
    content: '|';
    animation: blink 1s infinite;
}

/* 整合包样式 */
.modpacks-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.modpack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    color: var(--text-secondary);
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.modpack-item.loading {
    opacity: 0.6;
}

.modpack-item.slide-out {
    opacity: 0;
    transform: translateY(-20px);
}

.modpack-item.slide-in {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modpack-banner {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.modpack-banner img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}

.modpack-progress {
    width: 100%;
    height: 4px;
    background: rgba(71, 85, 105, 0.3);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
    position: relative;
}

.modpack-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.modpack-content {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0 10px;
}

.modpack-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modpack-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
}



.loading-placeholder {
    width: 24px;
    height: 24px;
    background: linear-gradient(90deg, rgba(51, 65, 85, 0.5) 25%, rgba(71, 85, 105, 0.5) 50%, rgba(51, 65, 85, 0.5) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

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

.modpack-count {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.modpack-count:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 保留原有插件样式以防需要 */
.plugins-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
}

.plugin-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.plugin-icon {
    font-size: 16px;
}

.performance-stats {
    padding: 20px;
}

.online-players {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.online-players .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.players-grid {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.player-avatar {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.player-avatar.online {
    border-color: var(--success-color);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.player-avatar.offline {
    border-color: var(--border-color);
    opacity: 0.4;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.player-avatar.offline img {
    filter: grayscale(100%) brightness(0.6);
}

.player-avatar.online img {
    filter: none;
}

.player-avatar::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    border: 1px solid var(--bg-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-avatar.online::after {
    opacity: 1;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    min-width: 80px;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: all 0.8s ease;
}

.stat-fill.high-usage {
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
    animation: warning-pulse 2s ease-in-out infinite alternate;
}

@keyframes warning-pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
    }
}

.stat-value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

@keyframes typewriter {
    to { opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* 后台管理功能 */
.admin-features {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

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

.admin-showcase {
    margin-top: 60px;
}

.admin-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: rgba(30, 41, 59, 0.5);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.admin-tab {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.admin-tab:hover {
    color: var(--text-primary);
    background: rgba(59, 130, 246, 0.1);
}

.admin-tab.active {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-glow);
}

.admin-tab i {
    font-size: 16px;
}

.admin-content {
    position: relative;
    min-height: 750px;
}

.admin-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.admin-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

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

.panel-header {
    text-align: center;
    margin-bottom: 40px;
}

.panel-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.panel-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.panel-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-large);
    background: var(--bg-card);
    height: 500px;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-normal);
}

.panel-image:hover img {
    transform: scale(1.02);
}

.panel-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.feature-tag:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 16px;
}

/* 网络分布 */
.network {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.network-left {
    z-index: 2;
    position: relative;
}

.network-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.network h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.network p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.network-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.network-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.network-stat-item:hover {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.7);
    transform: translateX(8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.network-right {
    position: relative;
    z-index: 2;
}

.network-map {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    height: auto;
}



.network-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.node {
    position: absolute;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.node-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-node 2s infinite;
    opacity: 0.6;
}

.node-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.node:hover .node-label {
    opacity: 1;
    top: -35px;
}

/* 节点位置 */
.node-beijing { top: 41%; left: 71%; }
.node-shanghai { top: 58%; left: 81%; }
.node-guangzhou { top: 75%; left: 69%; }
.node-chengdu { top: 62%; left: 53%; }
.node-hangzhou { top: 62%; left: 80%; }
.node-fuzhou { top: 71%; left: 78%; }
.node-hongkong { top: 77%; left: 71%; }
.node-zaozhuang {
    top: 50%;
    left: 73%;
}





@keyframes pulse-node {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}



/* 价格方案区域 */
.pricing {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 16px;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.pricing-price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.pricing-features .feature i {
    color: var(--success-color);
    font-size: 14px;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: block;
    text-align: center;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* 联系我们区域 */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-badge {
    margin-bottom: 24px;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: left;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.8);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--text-primary);
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-details p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.contact-details span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* 页脚 */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 24px;
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    font-size: 24px;
}

.footer-brand .logo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.footer-brand .logo-text span {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-brand > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    gap: 24px;
}

.footer-stats .stat {
    text-align: center;
}

.footer-stats .stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.footer-stats .stat span {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-info {
    margin-bottom: 24px;
}

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

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
}

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

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

/* 悬浮按钮 */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.floating-contact {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
}

.contact-btn {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.contact-btn:hover {
    transform: scale(1.1);
}

.contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    min-width: 140px;
    box-shadow: var(--shadow-lg);
}

.contact-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
    font-size: 14px;
}

.contact-option:hover {
    background: rgba(51, 65, 85, 0.5);
    color: var(--text-primary);
}

.contact-option i {
    width: 16px;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-left {
        width: 45%;
        margin-left: 12%;
    }

    .features-content {
        gap: 60px;
    }

    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .hero-left {
        width: 60%;
        margin-left: 8%;
        max-width: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .network-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .network h2 {
        font-size: 2.5rem;
    }

    .network-map {
        max-width: 600px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* 联系方式响应式布局 */
@media (max-width: 900px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 中等屏幕 - 平板 */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        justify-content: center;
        padding: 0 20px;
    }

    .hero-left {
        width: 100%;
        margin-left: 0;
        text-align: center;
        max-width: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .typewriter-text {
        min-width: 150px;
    }

    .typewriter-icon {
        width: 1em;
        height: 1em;
        margin-left: 8px;
        margin-right: 6px;
    }

    .title-main {
        flex-wrap: nowrap;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .title-highlight {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .hero-features-badges {
        justify-content: center;
        gap: 12px;
    }

    .feature-badge {
        font-size: 12px;
        padding: 10px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .admin-features {
        padding: 80px 0;
    }

    .admin-tabs {
        flex-direction: column;
        gap: 4px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .admin-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .admin-tab span {
        display: none;
    }

    .panel-header h3 {
        font-size: 1.5rem;
    }

    .panel-image {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .panel-features {
        gap: 8px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 8px 12px;
    }

    .network {
        padding: 80px 0;
    }

    .network h2 {
        font-size: 2rem;
    }

    .network-map {
        max-width: 450px;
    }

    .node-label {
        font-size: 10px;
        padding: 2px 6px;
    }

    .online-players {
        gap: 10px;
    }

    .player-avatar {
        width: 24px;
        height: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

    .footer-bottom-right {
        justify-content: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    .floating-contact {
        right: 16px;
        bottom: 80px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .typewriter-text {
        min-width: 120px;
        font-size: 0.9em;
    }

    .typewriter-icon {
        width: 0.9em;
        height: 0.9em;
        margin-left: 6px;
        margin-right: 4px;
    }

    .title-main {
        justify-content: flex-start;
    }

    .title-highlight {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-left h2,
    .contact-info h2 {
        font-size: 2.5rem;
    }

    .admin-tabs {
        padding: 4px;
        gap: 2px;
    }

    .admin-tab {
        padding: 10px 8px;
        border-radius: 8px;
    }

    .admin-tab i {
        font-size: 14px;
    }

    .panel-header h3 {
        font-size: 1.3rem;
    }

    .panel-header p {
        font-size: 0.9rem;
    }

    .feature-tag {
        font-size: 11px;
        padding: 6px 10px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-method {
        padding: 20px 12px;
    }
}
