/* Additional styles for enhanced game detail pages */
.game-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.game-description h3 {
    color: var(--neon-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-features {
    list-style: none;
    margin: 20px 0;
}

.game-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.game-features li:last-child {
    border-bottom: none;
}

.game-features i {
    color: var(--neon-green);
    margin-right: 10px;
}

.game-instructions {
    list-style: none;
    counter-reset: instruction-counter;
    margin: 20px 0;
    padding-left: 30px;
}

.game-instructions li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

.game-instructions li::before {
    counter-increment: instruction-counter;
    content: counter(instruction-counter);
    position: absolute;
    left: -30px;
    top: 10px;
    background: var(--gradient-1);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.game-rating {
    background: var(--gradient-2);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
}
