/* Styles communs */
.game-card-modern {
    background: #27292D;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    max-width: 1200px;
    font-family: system-ui, -apple-system, sans-serif;
}

.game-cover-modern {
    border-radius: 12px;
    object-fit: cover;
}

.game-info-modern {
    flex: 1;
}

.game-title-modern {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.game-developer-modern {
    color: #FF3033;
}

.game-developer-modern, .game-release-modern, .game-genres {
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.game-release-modern, .game-genres {
    color: #8f9199;
}

.platforms-modern {
    display: flex;
    gap: 0.5rem;
}

.platform-icon {
    background: #1F2024;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    color: #fff;
}

/* Style Desktop */
@media (min-width: 769px) {
    .game-card-modern {
        display: flex;
        gap: 20px;
    }
    
    .game-cover-modern {
        width: 200px;
        aspect-ratio: 1/1;
    }
    
    .game-title-modern {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .platforms-modern {
        margin: 1rem 0;
    }
}

/* Style Mobile */
@media (max-width: 768px) {
    .game-card-modern {
        text-align: center;
    }
    
    .game-cover-modern {
        width: 140px;
        margin: 0 auto 1rem;
        display: block;
    }
    
    .game-title-modern {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .platforms-modern {
        justify-content: center;
        margin: 0.75rem 0;
        flex-wrap: wrap;
    }
}
