:root {
    --primary-color: #00ff88;
    --bg-color: #0a192f;
    --text-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    font-family: 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    color: var(--bg-color);
    animation: glow 2s infinite alternate;
}

.glitch {
    position: relative;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.typing-text {
    font-size: 1.2em;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 10px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

.game-section {
    margin-bottom: 30px;
}

.game-stats {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    padding: 20px;
}

.hero-list {
    margin-bottom: 20px;
}

.hero-list h3 {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tag {
    background: rgba(0, 255, 136, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    color: var(--primary-color);
}

.achievement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.achievement-icon {
    font-size: 1.2em;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2em;
}

.info-section {
    margin-bottom: 30px;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px var(--primary-color);
    }

    to {
        box-shadow: 0 0 20px var(--primary-color),
            0 0 30px var(--primary-color);
    }
}

h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .profile-card {
        padding: 20px;
    }

    .glitch {
        font-size: 2em;
    }
}