/* game-card.css - Styles pour les cartes de jeux */
.game-link-container {
    margin: 2rem auto 3rem;
    max-width: 600px;
}

.game-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 212, 0, 0.2);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 212, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.game-link:hover::before {
    left: 100%;
}

.game-link:hover {
    background: rgba(246, 212, 0, 0.05);
    border-color: #f6d400;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(246, 212, 0, 0.2);
}

.game-icon {
    font-size: 3rem;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.game-link:hover .game-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.game-info {
    flex: 1;
    text-align: left;
}

.game-info h3 {
    color: #f6d400;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    margin: 0 0 0.3rem 0;
    font-weight: 400;
}

.game-info p {
    color: #888;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.game-arrow {
    color: #f6d400;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.game-link:hover .game-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .game-link {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .game-info {
        text-align: center;
    }
    
    .game-arrow {
        transform: rotate(90deg);
    }
    
    .game-link:hover .game-arrow {
        transform: rotate(90deg) translateX(5px);
    }
}