/* Enhanced Achievements Section */
.achievement {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--neon-blue);
    background: rgba(0, 243, 255, 0.15);
}

.achievement i {
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.achievement:hover i {
    transform: scale(1.1);
    color: var(--neon-yellow);
}

.achievement h4 {
    color: var(--cyber-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.achievement p {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.achievement-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-purple);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Game Achievements Section */
.game-achievements {
    margin-top: 3rem;
}

.game-achievements h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}

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

.game-card {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--neon-purple);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-purple);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--neon-purple);
}

.game-info {
    padding: 1.5rem;
}

.game-info h4 {
    color: var(--neon-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-stats {
    list-style: none;
    padding: 0;
}

.game-stats li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 0.9rem;
}

.game-stats li i {
    color: var(--neon-blue);
    margin-right: 0.8rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
} 